forked from owasp-dep-scan/dep-scan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (66 loc) · 1.82 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
[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==5.7.1",
"defusedxml",
"oras~=0.1.26",
"PyYAML",
"rich",
"quart",
"PyGithub",
"toml",
"pdfkit",
"Jinja2",
"packageurl-python",
"cvss",
]
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",
"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",
"flake8",
"pytest",
"pytest-cov",
"httpretty"
]
perf = ["hishel[redis]"]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
packages = ["depscan", "depscan.lib", "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 = 80
max-complexity = 18
select = "B,C,E,F,W,T4,B9"
[tool.black]
line-length = 80