-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.23 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 = "gardenlinux"
version = "0.9.0"
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 <contact@gardenlinux.io>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "gardenlinux", from="src"}]
[tool.poetry.dependencies]
python = "^3.13"
apt-repo = "^0.5"
boto3 = "^1.40.10"
click = "^8.2.1"
cryptography = "^45.0.6"
gitpython = "^3.1.45"
jsonschema = "^4.25.0"
networkx = "^3.5"
oras = "^0.2.37"
pygments = "^2.19.2"
PyYAML = "^6.0.2"
[tool.poetry.group.dev.dependencies]
bandit = "^1.8.6"
black = "^25.1.0"
moto = "^5.1.10"
python-dotenv = "^1.1.1"
pytest = "^8.4.1"
pytest-cov = "^6.2.1"
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^3.0.2"
[tool.poetry.scripts]
gl-cname = "gardenlinux.features.cname_main:main"
gl-features-parse = "gardenlinux.features.__main__:main"
gl-flavors-parse = "gardenlinux.flavors.__main__:main"
gl-oci = "gardenlinux.oci.__main__:main"
gl-s3 = "gardenlinux.s3.__main__:main"
[tool.pytest.ini_options]
pythonpath = ["src"]
norecursedirs = "test-data"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"