-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (46 loc) · 1008 Bytes
/
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
[tool.poetry]
name = "konverter"
version = "0.3.0"
description = "YAML templating for responsible users"
authors = ["Simon Westphahl <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/westphahl/konverter"
documentation = "https://github.com/westphahl/konverter/blob/master/README.md"
keywords = ["yaml", "template", "kubernetes"]
[tool.poetry.dependencies]
python = "^3.7"
cryptography = "^2.8"
"ruamel.yaml" = "^0.16.5"
click = "^7.0"
jinja2 = "^2.10.3"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
mypy = "^0.761"
pytest = "^5.3.2"
flake8 = "^3.7.9"
flake8-bugbear = "^20.1.2"
[tool.poetry.scripts]
konverter = "konverter.__main__:cli"
konverter-vault = "konverter.vault:cli"
[tool.black]
line-length = 88
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"