-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
70 lines (65 loc) · 2.03 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
[project]
name = "syn-commodore"
version = "v0.0.0"
description = "Commodore provides opinionated tenant-aware management of Kapitan inventories and templates. Commodore uses Kapitan for the heavy lifting of rendering templates and resolving a hierachical configuration structure."
readme = "README.md"
authors = [
{name = "VSHN AG", email = "info@vshn.ch"}
]
license = "BSD-3-Clause"
homepage = "https://github.com/projectsyn/commodore"
documentation = "https://syn.tools/commodore/index.html"
dynamic = ["dependencies", "requires-python"]
[project.scripts]
commodore = 'commodore.cli:main'
kapitan = 'kapitan.cli:main'
[tool.poetry]
packages = [
{include = "commodore"}
]
include = [
"commodore/lib/commodore.libjsonnet",
"commodore/lib/kube.libsonnet",
"commodore/lib/kube.libjsonnet",
"commodore/lib/kube-libsonnet/kube.libsonnet",
"commodore/filters/helm_namespace.jsonnet",
"commodore/scripts/run-kustomize",
]
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
# NOTE: We restrict boto3/botocore versions to reduce complexity of Poetry's
# dependency resolution significantly, cf.
# https://github.com/orgs/python-poetry/discussions/8165#discussioncomment-6387378
# We put those dependencies first to constrain the Poetry dependency solver
# which processes dependencies in the order they're listed. Without these
# restrictions, the broad required boto3 dependency in Kapitan makes
# dependency resolution very slow.
boto3 = "^1.26.145"
botocore="^1.29.145"
kapitan = "0.34.7"
click = "8.3.2"
gitpython = "3.1.46"
requests = "2.33.1"
url-normalize = "2.2.1"
python-dotenv = "1.2.2"
pyxdg = "0.28"
cruft = "2.16.0"
oauthlib = "3.3.1"
pyjwt = "2.12.1"
PyGithub = "2.9.1"
reclass-rs = "0.10.1"
gojsonnet = "0.22.0"
pygobuildinfo = "0.1.28"
[tool.poetry.group.dev.dependencies]
tox = "3.28.0"
pytest = "9.0.3"
pytest-xdist = "3.8.0"
pytest-benchmark = "5.2.3"
responses = "0.26.0"
black = "26.3.1"
pyfakefs = "6.2.0"
pytest-cov = "7.1.0"
pylint = "4.0.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"