-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.04 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
[tool.poetry]
authors = ["kannkyo <15080890+kannkyo@users.noreply.github.com>"]
description = "boilerplate project for python"
include = ["sbom.xml"]
name = "boilerplate-python"
version = "0.2.0"
[tool.poetry.dependencies]
Flask = "^2.3.3"
python = "^3.8"
[tool.poetry.dev-dependencies]
autopep8 = "^1.6.0"
cyclonedx-bom = "^3.11.2"
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.4.1"
pytest-cov = "^4.1.0"
pytest-html = "^4.1.1"
recommonmark = "^0.7.1"
sphinx = "^5.3.0"
sphinx-markdown-tables = "^0.0.17"
sphinx-rtd-theme = "^1.3.0"
toml = "^0.10.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[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",
]
testpaths = [
"tests",
]