-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
38 lines (33 loc) · 1023 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
[tool.poetry]
name = "sdcclient"
version = "0.0.0" # Updated by poetry-dynamic-versioning
description = "Python client for Sysdig Platform"
authors = ["Sysdig Inc. <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31"
pyaml = ">=20.4,<22.0"
requests-toolbelt = "^1.0.0"
urllib3 = "^2.2.1"
tatsu = [
{ version = "^4.4.0", python = "<3.8" },
{ version = ">=5.5.0,<5.7.0", python = ">=3.8, <3.10" },
{ version = ">=5.7.0,<5.9.0", python = ">=3.10" }
]
sphinx = {version = ">=3.3.1,<6.0.0", optional = true}
sphinx-rtd-theme = { version = ">=0.5,<1.1", optional = true }
[tool.poetry.dev-dependencies]
mamba = "^0.11.1"
doublex = "^1.9.2"
doublex-expects = "^0.7.1"
expects = "^0.9.0"
flake8 = "^3.8.4"
coverage = "^6.2"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-material", "sphinx-rtd-theme"]
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"