-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
61 lines (56 loc) · 1.17 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
[tool.poetry]
name = "krkn-lib"
version = "0.0.0"
description = "Foundation library for Kraken"
authors = ["Red Hat Chaos Team"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/redhat-chaos/krkn"
#packages = [{include= "src/krkn_lib"}]
[tool.poetry.dependencies]
python = "^3.9"
kubernetes ="28.1.0"
arcaflow-lib-kubernetes="^0.2.1"
sphinxnotes-markdown-builder="^0.5.6"
requests="^2.29.0"
kubeconfig = "^1.1.1"
base64io = "^1.0.3"
sphinx-rtd-theme = "^1.2.2"
tzlocal = "5.1"
pytz = "^2023.3"
PyYAML = "6.0.1"
prometheus-api-client = "^0.5.4"
elasticsearch = "7.13.4"
elasticsearch-dsl = "7.4.1"
wheel = "^0.42.0"
cython = "3.0"
numpy= "1.26.4"
deprecation="2.1.0"
[tool.poetry.group.test.dependencies]
jinja2 = "^3.1.2"
boto3 = "^1.28.12"
[tool.black]
line-length = 79
target-version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"