-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 990 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
[project]
name = "chaostoolkit-gh-actions"
version = "0.1.0"
description = "Chaos Toolkit GitHub Actions Dependencies Manager"
authors = [
{name = "Sylvain Hellegouarch", email = "[email protected]"},
]
dependencies = [
"chaostoolkit>=1.19.0",
"chaostoolkit-addons>=0.11.0",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "Apache-2.0"}
[project.optional-dependencies]
gcp = [
"chaostoolkit-google-cloud-platform>=0.23.0",
]
k8s = [
"chaostoolkit-kubernetes>=0.38.2",
"chaostoolkit-istio>=0.4.1",
"chaostoolkit-prometheus>=0.6.0",
]
aws = [
"chaostoolkit-aws>=0.33.0",
"aws-az-failure-chaostoolkit>=0.1.10",
]
otel = [
"chaostoolkit-opentracing>=0.17.0",
]
slack = [
"chaostoolkit-slack>=0.10.0",
]
# leave empty as it's used for user specific extra dependencies
extra = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = false
[tool.pdm.resolution]
prefer-binary = ":all:"