-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
48 lines (39 loc) · 1.26 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "isim"
version = "15.0.0"
description = "Python wrapper around the simctl utility"
license = "MIT"
authors = [
"Dale Myers <[email protected]>"
]
readme = 'README.md'
repository = "https://github.com/dalemyers/xcrun"
homepage = "https://github.com/dalemyers/xcrun"
keywords = ['xcode', 'xcrun', 'simctl', 'ios', 'simulator', 'isim']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Testing',
'Topic :: Utilities'
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
black = "=23.7.0"
mypy = "=1.5.1"
pylint = "=2.17.5"
pytest = "=7.4.0"
pytest-cov = "=4.1.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"