generated from arcalot/arcaflow-plugin-template-python
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
39 lines (35 loc) · 1.05 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 = "arcaflow_plugin_kill_pod"
# Do not change, the version is automatically updated in CI.
version = "0.0.0"
description = "Chaos Engineering Kill Pod Plugin for Arcaflow"
authors = []
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
homepage = "https://github.com/redhat-chaos/arcaflow-plugin-kill-pod"
packages = [
{ include="arcaflow_plugin_kill_pod.py", from="." },
]
include = [
{ path="docker-compose.yaml", format="sdist" },
{ path="tests", format="sdist" },
{ path="poetry.lock", format="sdist" },
{ path="Dockerfile", format="sdist" },
]
[tool.poetry.dependencies]
python = "^3.9"
arcaflow-plugin-sdk = "0.14.1"
kubernetes = "^28"
requests = "^2.32.0" # fixes cve-2024-3651
idna = "^3.7" # fixes cve-2024-35195
[tool.poetry.dev-dependencies]
coverage = "^6.5.0"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"