-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.42 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
[build-system]
requires = [ "setuptools>=61.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "hatch-xclam"
version = "0.8.2"
description = "Package manager for the Cracking Shells ecosystem"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent"
]
dependencies = [
"jsonschema>=4.0.0",
"requests>=2.25.0",
"packaging>=20.0",
"docker>=7.1.0",
"pydantic>=2.0.0",
"hatch-validator>=0.8.0",
"tomli-w>=1.0.0"
]
[[project.authors]]
name = "Cracking Shells Team"
[project.optional-dependencies]
docs = [ "mkdocs>=1.4.0", "mkdocstrings[python]>=0.20.0" ]
dev = [
"cs-wobble>=0.2.0",
"pytest>=8.0.0",
"black>=23.0.0",
"ruff>=0.1.9",
"pre-commit>=3.0.0"
]
[project.scripts]
hatch = "hatch.cli:main"
[project.urls]
Homepage = "https://github.com/CrackingShells/Hatch"
"Bug Tracker" = "https://github.com/CrackingShells/Hatch/issues"
[tool.setuptools.package-dir]
"" = "."
[tool.setuptools.packages.find]
where = [ "." ]
[tool.pytest.ini_options]
pythonpath = [ "tests" ]
[tool.ruff]
exclude = [
".git",
".ruff_cache",
"__pycache__",
"node_modules",
"site",
"py-repo-template",
"cracking-shells-playbook",
"__reports__",
"__design__",
"tests/test_data"
]
[tool.ruff.lint]
select = [ "E", "F" ]
ignore = [ "E501" ]