forked from vulnerability-lookup/vulnerability-lookup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
168 lines (148 loc) · 4.97 KB
/
pyproject.toml
File metadata and controls
168 lines (148 loc) · 4.97 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "vulnerabilitylookup"
version = "2.8.0"
description = "Vulnerability-Lookup facilitates quick correlation of vulnerabilities from various sources, independent of vulnerability IDs, and streamlines the management of Coordinated Vulnerability Disclosure (CVD)."
authors = [
{name = "Alexandre Dulaunoy", email = "alexandre.dulaunoy@circl.lu"},
{name = "Raphaël Vinot", email = "raphael.vinot@circl.lu"},
{name = "Cédric Bonhomme", email = "cedric.bonhomme@circl.lu"}
]
license = "AGPL-3.0-or-later"
readme = "README.md"
keywords = ["Vulnerability-Lookup", "Vulnerability", "CVE", "CVD", "CSAF"]
# classifieres is dynamic because we want to create Python classifiers automatically
dynamic = ["classifiers"]
requires-python = ">=3.10,<4.0"
dependencies = [
"redis [hiredis] (>=5.0.8)",
"gunicorn [gevent] (>=23.0.0)",
"flask-restx (>=1.3.0)",
"werkzeug (>=3.0.4)",
"requests (>=2.32.3)",
"gitpython (>=3.1.43)",
"bootstrap-flask (>=2.4.0)",
"pyyaml (>=6.0.2)",
"orjson (>=3.10.7)",
"feedgen (>=1.0.0)",
"sqlalchemy (>=2.0.35)",
"flask-principal (>=0.4.0)",
"flask-login (>=0.6.3)",
"flask-sqlalchemy (>=3.1.1)",
"psycopg2-binary (>=2.9.9)",
"flask-migrate (>=4.0.7)",
"validate-email (>=1.3)",
"flask-wtf (>=1.2.1)",
"wtforms (>=3.1.2)",
"email-validator (>=2.2.0)",
"flask-paginate (>=2024.4.12)",
"pyotp (>=2.9.0)",
"qrcode [pil] (>=7.4.2)",
"pyvariot (>=0.2.0)",
"markdown (>=3.7)",
"the-big-username-blacklist (>=1.5.4)",
"cvss (>=3.1)",
"xmltodict (>=0.14.0)",
"feedparser (>=6.0.11)",
"pycountry (>=24.6.1)",
"pymispwarninglists (>=1.5)",
"bleach (>=6.2.0)",
"sqlalchemy-schemadisplay (>=2.0,<3.0)",
]
[project.urls]
Homepage = "https://github.com/vulnerability-lookup/vulnerability-lookup"
Repository = "https://github.com/vulnerability-lookup/vulnerability-lookup"
Documentation = "https://vulnerability.circl.lu/documentation"
Changelog = "https://github.com/vulnerability-lookup/vulnerability-lookup/blob/main/CHANGELOG.md"
[project.scripts]
start = "bin.start:main"
stop = "bin.stop:main"
update = "bin.update:main"
shutdown = "bin.shutdown:main"
run_backend = "bin.run_backend:main"
start_website = "bin.start_website:main"
restart_website = "bin.restart_website:main"
cisa_known_exploited = "bin.cisa_known_exploited:main"
nvd_importer = "bin.nvd_fetcher:main"
cvelist_importer = "bin.cvelist:main"
gsd_importer = "bin.gsd:main"
pysec_importer = "bin.pysec:main"
jvndb_importer = "bin.jvndb:main"
github_importer = "bin.github:main"
tailscale_importer = "bin.tailscale:main"
variot_importer = "bin.variot:main"
ossf_malicious_importer = "bin.ossf_malicious:main"
csaf_certbund_importer = "bin.csaf_certbund:main"
csaf_ncscnl_importer = "bin.csaf_ncscnl:main"
csaf_trustsource_importer = "bin.csaf_trustsource:main"
csaf_siemens_importer = "bin.csaf_siemens:main"
csaf_redhat_importer = "bin.csaf_redhat:main"
csaf_suse_importer = "bin.csaf_suse:main"
csaf_opensuse_importer = "bin.csaf_opensuse:main"
csaf_cisa_importer = "bin.csaf_cisa:main"
csaf_cisco_importer = "bin.csaf_cisco:main"
csaf_sick_importer = "bin.csaf_sick:main"
csaf_ox_importer = "bin.csaf_ox:main"
csaf_nozominetworks_importer = "bin.csaf_nozominetworks:main"
cwec_importer = "bin.cwec:main"
capec_importer = "bin.capec:main"
vulnrichment_importer = "bin.vulnrichment:main"
fkie_nvd_importer = "bin.fkie_nvd:main"
csaf_microsoft_importer = "bin.csaf_microsoft:main"
dump = "bin.dump:main"
[tool.poetry]
requires-poetry = ">=2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Security",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
[tool.poetry.group.dev.dependencies]
ipython = "^8.26.0"
pre-commit = "^3.8.0"
mypy = "^1.11.2"
types-redis = "^4.6.0.20240819"
types-requests = "^2.32.0.20240712"
types-pyyaml = "^6.0.12.20240808"
pytest = "^8.3.2"
pytest-env = "^1.1.3"
pyvulnerabilitylookup = "^2.2.0"
types-xmltodict = "^0.13.0.3"
[tool.poetry.group.docs.dependencies]
sphinx-book-theme = "^1.0.1"
sphinxcontrib-openapi = "^0.8.1"
pydot = "^1.4.2"
[tool.poetry.group.docs]
optional = true
[tool.mypy]
python_version = "3.12"
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = false
strict_optional = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
show_error_context = true
pretty = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
env = [
"TESTING=gh_action",
]