forked from projectsyn/commodore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.12 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
[tool.poetry]
name = "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."
authors = ["VSHN AG <[email protected]>"]
license = "BSD-3-Clause"
include = [
"commodore/component-template/**/*",
"commodore/lib/commodore.libjsonnet",
"commodore/filters/helm_namespace.jsonnet"
]
[tool.poetry.dependencies]
python = "^3.6"
# Require kapitan >= 0.27 to help poetry to resolve dependencies
kapitan = ">=0.27"
click = "*"
cookiecutter = "*"
gitpython = "*"
requests = "*"
url-normalize = "*"
python-dotenv = "*"
importlib_metadata = "*"
[tool.poetry.dev-dependencies]
tox = "*"
autopep8 = "*"
pytest = "^5.4.3"
pytest-xdist = "^1.32.0"
[tool.poetry.scripts]
commodore = 'commodore.cli:main'
build_kapitan_helm_binding = 'tools.tools:build_kapitan_helm_binding'
autopep = 'tools.tools:autopep'
local_reveal = 'tools.tools:reveal'
compile = 'tools.tools:compile'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"