forked from SlapDrone/nvd-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (65 loc) · 1.62 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
[tool.poetry]
authors = ["kannkyo <[email protected]>"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security",
]
description = "NVD API 2.0 Python API"
documentation = "https://kannkyo.github.io/nvd-api/html/"
homepage = "https://github.com/kannkyo/nvd-api"
include = ["sbom.xml"]
keywords = ["NVD", "security", "vulnerability"]
name = "nvd-api"
readme = "README.rst"
repository = "https://github.com/kannkyo/nvd-api"
version = "0.9.1"
[tool.poetry.dependencies]
certifi = ">=2022.12.7"
frozendict = "^2.3.4"
python = "^3.8"
python-dateutil = "^2.8.2"
setuptools = "^67.2.0"
typing-extensions = "^4.4.0"
urllib3 = "^1.26.13"
[tool.poetry.dev-dependencies]
autopep8 = "^1.6.0"
cyclonedx-bom = "^3.11.0"
flake8 = "^4.0.1"
flake8-formatter-junit-xml = "^0.0.6"
flake8-html = "^0.4.3"
in-toto = "^1.4.0"
pycodestyle = "^2.7.0"
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
pytest-html = "^3.2.0"
recommonmark = "^0.7.1"
sphinx = "^6.2.1"
sphinx-markdown-tables = "^0.0.17"
sphinx-rtd-theme = "^1.2.2"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.21.1"
pytest-randomly = "^3.12.0"
twine = "^4.0.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.poetry.scripts]
push = "tools.push:main"
release = "tools.release:main"
sbom = "tools.sbom:main"
sphinx = "tools.sphinx:main"
[tool.pytest.ini_options]
addopts = [
"--cov=src",
"--cov-report=term-missing",
"--cov-report=html",
"--cov-report=xml",
"--junitxml=report.xml",
"--verbose",
"--html=report.html",
"--self-contained-html",
]
testpaths = [
"tests",
]