forked from krkn-chaos/krkn-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 993 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 = "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 ="^26.1.0"
arcaflow-lib-kubernetes="^0.1.2"
sphinxnotes-markdown-builder="^0.5.6"
requests="^2.29.0"
kubeconfig = "^1.1.1"
base64io = "^1.0.3"
sphinx-rtd-theme = "^1.2.2"
[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"