-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (49 loc) · 994 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
52
53
54
[tool.poetry]
name = "k8s-itlabs-operator"
version = "1.3.1"
description = "Operator for preparing infrastructure dependencies of services"
authors = ["itlabs.io"]
[tool.poetry.dependencies]
python = "^3.10"
kopf = "1.36.2"
kubernetes = "26.1.0"
hvac = "1.0.2"
psycopg2-binary = "2.9.5"
sentry-sdk = "1.16.0"
prometheus-client = "0.16.0"
ujson = "5.7.0"
wrapt = "1.15.0"
pytest = "7.2.0"
pytest-asyncio = "0.21.0"
pytest-mock = "3.10.0"
factory-boy = "3.2.1"
environs = "9.5.0"
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.10"
pre-commit = "^3.6.0"
[tool.isort]
profile = "black"
line_length = 80
force_grid_wrap = 0
multi_line_output = 3
combine_as_imports = "True"
include_trailing_comma = "True"
[tool.black]
line-length = 80
include = '\.pyi?$'
exclude = '''
(
/(
docs
| var
| env
| \.env
| venv
| \.venv
| \.git
)/
)
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"