-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpyproject.toml
82 lines (72 loc) · 2.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "owasp-depscan"
version = "6.0.0"
description = "Fully open-source security audit for project dependencies based on known vulnerabilities and advisories."
authors = [
{name = "Team AppThreat", email = "[email protected]"},
]
dependencies = [
"appthreat-vulnerability-db[oras]",
"custom-json-diff>=2.1.5",
"defusedxml>=0.7.1",
"PyYAML>=6.0.2",
"rich>=13.9.4",
"toml>=0.10.2",
"pdfkit>=1.0.0",
"Jinja2>=3.1.5",
"packageurl-python>=0.16.0",
"cvss>=3.4",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/owasp-dep-scan/dep-scan"
Bug-Tracker = "https://github.com/owasp-dep-scan/dep-scan/issues"
Funding = "https://owasp.org/donate/?reponame=www-project-dep-scan&title=OWASP+depscan"
[project.scripts]
depscan = "depscan.cli:main"
scan = "depscan.cli:main"
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"flake8>=7.1.2",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"httpretty>=1.1.4"
]
server = ["quart>=0.20.0"]
ext = ["atom-tools>=0.7.1", "blint"]
perf = ["hishel[redis]>=0.1.1"]
all = ["atom-tools>=0.7.1", "blint", "quart>=0.20.0", "PyGithub>=2.6.1", "hishel[redis]>=0.1.1"]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
packages = ["depscan", "depscan.lib", "depscan.lib.package_query", "vendor"]
[tool.pytest.ini_options]
addopts = "--verbose --cov-append --cov-report term --cov depscan"
[tool.flake8]
ignore = "E203, E266, E501, W503, W605"
max-line-length = 99
max-complexity = 18
select = "B,C,E,F,W,T4,B9"
[tool.black]
line-length = 99
[tool.uv.sources]
appthreat-vulnerability-db = { git = "https://github.com/appthreat/vulnerability-db", rev = "ba88de9194bde83b23d31c2b48a72c60d0ca1944" }
blint = { git = "https://github.com/owasp-dep-scan/blint", rev = "79f28886d64d568aa789195ced64489ed3232406" }