-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.93 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
[tool.poetry]
name = "gardenlinux"
version = "0.10.16"
description = "Contains tools to work with the features directory of gardenlinux, for example deducting dependencies from feature sets or validating cnames"
authors = ["Garden Linux Maintainers <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "gardenlinux", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.13,!=3.14.1"
apt-repo = "^0.5"
boto3 = "^1.42.30"
click = "^8.3.1"
cryptography = "^46.0.3"
jsonschema = "^4.26.0"
networkx = "^3.6"
oras = "^0.2.38"
pygit2 = "^1.19.1"
pygments = "^2.19.2"
PyGithub = "^2.8.1"
PyYAML = "^6.0.2"
gitpython = "^3.1.45"
[tool.poetry.group.dev.dependencies]
bandit = "^1.9.3"
moto = "^5.1.20"
pre-commit = "^4.5.1"
python-dotenv = "^1.2.1"
pytest = "^9.0.2"
pytest-cov = "^7.0.0"
isort = "^7.0.0"
requests-mock = "^1.12.1"
mypy = "1.18.2"
types-click = "^7.1.8"
types-pyyaml = "^6.0.12.20250915"
types-requests = "^2.32.4.20260107"
boto3-stubs = { extras = ["s3"], version = "^1.42.30" }
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^3.0.2"
sphinx-click = "^4.4.0"
sphinxcontrib-autoprogram = "^0.1.8"
[tool.poetry.scripts]
gl-cname = "gardenlinux.features.cname_main:main"
gl-feature-fs-diff = "gardenlinux.features.reproducibility.__main__:main"
gl-features-parse = "gardenlinux.features.__main__:main"
gl-flavors-parse = "gardenlinux.flavors.__main__:main"
gl-gh-release = "gardenlinux.github.release.__main__:main"
gl-oci = "gardenlinux.oci.__main__:main"
gl-s3 = "gardenlinux.s3.__main__:main"
[tool.pytest.ini_options]
pythonpath = ["src"]
norecursedirs = "test-data"
[tool.isort]
profile = "black"
line_length = 120
known_first_party = ["gardenlinux"]
skip = ["test-data", ".venv", "**/__pycache", ".pytest-cache", "hack"]
[tool.bandit]
skips = ["B101", "B404"] # allow asserts, subprocesses
exclude_dirs = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"