forked from telekom-mms/trivy-dojo-report-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1.06 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
[tool.poetry]
name = "trivy-dojo-report-operator"
version = "0.3.3"
description = "This Kubernetes operator listens for vulnerability reports generated by the Trivy Operator and forwards them to Defect Dojo for further analysis and tracking"
readme = "README.md"
authors = ["Sebastian Gumprich <[email protected]>"]
license = "GPLv3"
homepage = "https://github.com/telekom-mms/trivy-dojo-report-operator/"
repository = "https://github.com/telekom-mms/trivy-dojo-report-operator/"
documentation = "https://github.com/telekom-mms/trivy-dojo-report-operator/"
[tool.poetry.dependencies]
python = "^3.9"
kopf = "^1.36.2"
requests = "^2.31.0"
kubernetes = "^30.0.0"
prometheus-client = "^0.20.0"
aiohttp = "^3.9.3"
[tool.poetry.dev-dependencies]
black = "^24.0.0"
mypy = "^1.0.0"
pytest = "^8.0.0"
pytest-cov = "^5.0.0"
types-PyYAML = "^6.0.12"
isort = "^5.10.1"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "."
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"