-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (85 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
93 lines (85 loc) · 1.91 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aswfdocker"
version = "1.0.0"
description = "ASWF Docker Utilities"
readme = "python/README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.9"
authors = [
{ name = "Aloys Baillet", email = "aloys.baillet+github@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"bottle==0.12.25",
"certifi==2024.7.4",
"charset-normalizer==3.3.2",
"click==8.1.7",
"colorama==0.4.6",
"conan==2.26.2",
"deprecated==1.2.14",
"distro==1.8.0; sys_platform == \"linux\" or sys_platform == \"linux2\"",
"fasteners==0.19",
"idna==3.7",
"importlib-resources==5.12.0",
"jinja2==3.1.6",
"markupsafe==2.1.5",
"node-semver==0.6.1",
"patch-ng==1.18.0",
"pluginbase==1.0.1",
"pygithub==2.2.0",
"pygments==2.17.2",
"pyjwt[crypto]==2.12.0",
"python-dateutil==2.9.0.post0",
"pyyaml==6.0.3",
"requests==2.32.5",
"six==1.16.0",
"typing_extensions==4.7.1",
"tqdm==4.66.3",
"urllib3>=1.26.6,<3",
"wrapt==1.16.0",
"zipp==3.19.1; python_version < \"3.10\"",
]
[project.optional-dependencies]
dev = [
"pytest",
"atomicwrites; sys_platform == \"win32\"",
"pytest-cov",
"pylint==3.2.7",
"black",
"mypy",
"pre-commit",
"pytest-pylint",
"types-click",
"types-jinja2",
"types-pyyaml",
"types-requests",
"twine",
]
[project.scripts]
aswfdocker = "aswfdocker.cli.aswfdocker:cli"
[tool.setuptools]
packages = { find = { where = ["python"] } }
[tool.setuptools.package-data]
aswfdocker = ["data/*.yaml", "data/*.jinja2"]
[tool.uv]
required-version = "0.10.10"
[tool.pytest.ini_options]
testpaths = [
"python/aswfdocker/tests",
]
[tool.black]
target-version = ['py39']
include = '''
(
python/.*\.py$
| packages/conan/recipes/.*\.py$
| setup\.py
)
'''