-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (35 loc) · 1020 Bytes
/
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
[tool.poetry]
name = "xcresult"
version = "16.0.4"
description = "An xcresult parser."
license = "MIT"
authors = [
"Dale Myers <dale@myers.io>"
]
readme = 'README.md'
repository = "/~https://github.com/dalemyers/xcresult"
homepage = "/~https://github.com/dalemyers/xcresult"
keywords = ['xcresult', 'parser', 'xcode']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.scripts]
xcresult = 'xcresult:command_line.run'
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.dev-dependencies]
black = "=24.4.2"
mypy = "=1.11.1"
pylint = "=3.2.6"
pytest = "=8.3.2"
pytest-cov = "=5.0.0"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"