-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.12 KB
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
[tool.poetry]
name = "trivy-dojo-report-operator"
version = "0.8.11"
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 <sebastian.gumprich@telekom.de>"]
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/"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
kopf = "^1.39.1"
requests = "^2.31.0"
kubernetes = "^35.0.0"
prometheus-client = "^0.25.0"
aiohttp = "^3.10"
yarl = ">=1.9"
multidict = ">=6.0"
[tool.poetry.group.dev.dependencies]
black = "26.3.1"
mypy = "1.20.2"
pytest = "9.0.3"
pytest-cov = "7.1.0"
types-PyYAML = "6.0.12.20260518"
isort = "8.0.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"