-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (37 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
47 lines (37 loc) · 1.08 KB
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.2.5"
description = "A utility for interacting with Xcode's xcodeproj bundle format."
license = "MIT"
authors = ["Dale Myers <dalemy@microsoft.com>"]
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"
platformdirs = "^4.5.0"
deserialize = "^2.0.1"
[tool.poetry.dev-dependencies]
black = "^26.3.1"
mypy = "^1.19.1"
pylint = "^4.0.5"
pytest = "^9.0.2"
pytest-cov = "^7.0.0"
requests = "^2.32.5"
types-requests = "^2.32.4"
[[tool.mypy.overrides]]
module = ["deserialize"]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"