-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1010 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1010 Bytes
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
[build-system]
requires = ["setuptools>=65"]
build-backend = "setuptools.build_meta"
[project]
name = "owasp-dependency-track-client"
dynamic = ["version"]
description = "Inofficial OWASP Dependency Track API Python client"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"attrs>=26.1.0",
"httpx>=0.28.1",
"python-dateutil>=2.9.0.post0",
]
[project.optional-dependencies]
build = [
"build",
"twine",
]
test = [
"pytest==9.1.1",
"pytest-depends==1.0.1",
"pytest-cov==7.1.0",
"dotenv==0.9.9",
"openapi-python-client==0.29.1",
"tinystream==0.1.18",
"is_empty==1.0.1",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["owasp_dt*", "owasp_dt_v2*"]
exclude = ["test*", "tmp*"]
[project.urls]
Homepage = "https://github.com/mreiche/owasp-dependency-track-python-client"
Repository = "https://github.com/mreiche/owasp-dependency-track-python-client"
"Bug Tracker" = "https://github.com/mreiche/owasp-dependency-track-python-client/issues"