-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
52 lines (48 loc) · 1.19 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
[tool.poetry]
authors = ["kannkyo <15080890+kannkyo@users.noreply.github.com>"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security",
]
description = "EPSS API Python Client"
documentation = "https://github.com/kannkyo/epss-api"
homepage = "https://github.com/kannkyo/epss-api"
include = ["sbom.xml"]
keywords = ["EPSS", "security", "vulnerability"]
name = "epss-api"
readme = "README.rst"
repository = "https://github.com/kannkyo/epss-api"
version = "1.1.3"
[tool.poetry.dependencies]
python = "^3.8"
urllib3 = ">=1.26.13,<3.0.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^1.6.0"
flake8 = "^4.0.1"
flake8-formatter-junit-xml = "^0.0.6"
flake8-html = "^0.4.3"
in-toto = "^1.3.1"
pycodestyle = "^2.7.0"
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
pytest-html = "^3.2.0"
recommonmark = "^0.7.1"
seman = "^0.1.3"
toml = "^0.10.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[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",
]