forked from kapicorp/kapitan
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
87 lines (80 loc) · 1.99 KB
/
pyproject.toml
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
[build-system]
requires = [
"poetry-core==1.4.0",
"poetry-version-plugin==0.1.3"
]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "kapitan"
description = "Generic templated configuration management for Kubernetes, Terraform and other things"
authors = [
"Ricardo Amaro <[email protected]>"
]
documentation = "https://kapitan.dev/"
repository = "https://github.com/kapicorp/kapitan"
readme = "README.md"
keywords = ["jsonnet", "kubernetes", "reclass", "jinja"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
license = "Apache-2.0"
version = "0.32.0"
packages = [
{ include = "kapitan" },
{ include = "kapitan/reclass" },
]
[tool.poetry.scripts]
kapitan = 'kapitan.cli:main'
[tool.poetry-version-plugin]
source = "git-tag"
[tool.poetry.dependencies]
python = "^3.8"
addict = "^2.4.0"
azure-keyvault-keys = "^4.7.0"
boto3 = "^1.18.17"
cryptography = ">=3.4.7,<42.0.0"
gitpython = "^3.1.30"
google-api-python-client = "^2.15.0"
hvac = "1.2.1"
jinja2 = "^3.0.1"
jsonnet = "^0.20.0"
jsonschema = "^4.17.3"
kadet = "^0.2.2"
python-gnupg = ">=0.4.7,<0.6.0"
pyyaml = "^6.0"
omegaconf = { git = "https://github.com/neXenio/omegaconf.git", branch = "dev" }
requests = "^2.28.2"
six = "^1.16.0"
toml = "^0.10.2"
yamllint = "^1.29.0"
python-magic = "^0.4.27"
azure-identity = "^1.12.0"
certifi = "*"
gitdb = "^4.0.10"
packaging = "^23.0"
typing-extensions = "^4.0.0"
gojsonnet = { version = "^0.20.0", optional = true }
docker = { version = ">=5,<7", optional = true }
regex = "^2023.5.5"
[tool.poetry.extras]
gojsonnet = ["gojsonnet"]
test = ["docker"]
[tool.black]
line-length = 110
target-version = ['py38']
exclude = '''
(
/(
.*reclass.*
| .*version.py
)
)
'''
[tool.isort]
profile = "black"