-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
47 lines (37 loc) · 1.08 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
[tool.poetry]
name = "xcodeproj"
version = "2.1.2"
description = "A utility for interacting with Xcode's xcodeproj bundle format."
license = "MIT"
authors = ["Dale Myers <[email protected]>"]
readme = 'README.md'
repository = "https://github.com/Microsoft/xcodeproj"
homepage = "https://github.com/Microsoft/xcodeproj"
keywords = ['xcode', 'xcodeproj', 'pbxproj', 'apple']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
'Topic :: Utilities',
]
[tool.poetry.dependencies]
python = "^3.10"
appdirs = "^1.4.4"
deserialize = "^2.0.1"
[tool.poetry.dev-dependencies]
black = "^23.7.0"
mypy = "^1.4.1"
pylint = "^2.17.5"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
requests = "^2.31.0"
types-requests = "^2.31.0.2"
[[tool.mypy.overrides]]
module = ["deserialize"]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"