-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.09 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
[tool.poetry]
name = "kalm-benchmark"
version = "0.1.0"
description = "A tool for comparing and evaluation various (compliance) scanners for Kubernetes"
authors = ["Markus Gierlinger <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.9.0"
cdk8s = "^2.2"
pandas = "^2.0.3"
StrEnum = "^0.4.7"
streamlit = "^1.37.0"
altair = "^5.0.1"
loguru = "^0.7.0"
PyYAML = "^6.0"
exceptiongroup = "^1.0.0-rc.3"
tabulate = "^0.9.0"
streamlit-aggrid = "^0.3.4.post3"
pyarrow = "^14.0.1"
[tool.poetry.dev-dependencies]
pre-commit = "^3.3.3"
isort = "^5.10"
black = "^24.3.0"
flake8 = "^6.1.0"
pytest = "^7.4.0"
jupyter = "^1.0.0"
pytest-mock = "^3.7.0"
pyfakefs = "^5.2.4"
pytest-subprocess = "^1.4.1"
tox = "^4.10.0"
cyclonedx-bom = "^3.11.2"
[tool.poetry.scripts]
cli = "kalm_benchmark.cli:app"
kalm-benchmark = "kalm_benchmark.cli:app"
# section is used by tox.ini
[tool.poetry.extras]
test = ["pytest"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"