-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.04 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
43
[project]
name = "sdcclient"
# version = "0.0.0" # Will be configured by the tool.hatch.version.source in this file.
dynamic = ["version"] # Will be configured by the tool.hatch.version.source in this file.
description = "Python client for Sysdig Platform"
authors = [{ name = "Sysdig Inc.", email = "info@sysdig.com" }]
requires-python = ">=3.10"
readme = "README.md"
license = "MIT"
dependencies = [
"requests~=2.31",
"pyaml>=20.4,<22.0",
"requests-toolbelt>=1.0.0,<2",
"urllib3>=2.2.1,<3",
"tatsu>=5.7.0,<5.9.0",
]
[project.optional-dependencies]
docs = [
"sphinx>=3.3.1,<6.0.0",
"sphinx-rtd-theme>=0.5,<1.1",
]
[dependency-groups]
dev = [
"mamba>=0.11.1,<0.12",
"doublex>=1.9.2,<2",
"doublex-expects>=0.7.1,<0.8",
"expects>=0.9.0,<0.10",
"flake8>=3.8.4,<4",
"coverage~=6.2",
]
[tool.uv]
default-groups = ["dev"]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs" # Will get the latest git tag to configure this project's version