-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.07 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
[tool.poetry]
name = "theboringlibrary"
version = "0.6.5"
description = "It does nothing!"
authors = ["Stefano Frassetto <[email protected]>"]
readme = "README.md"
packages = [
{ include = "theboringlibrary", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
pytest = {version = "^7.3.2", optional = true}
mkdocs = {version = "^1.4.3", optional = true}
pytest-cov = "^4.1.0"
coverage = {version = "^7.2.7", extras = ["toml"]}
mkdocs-material = {version = "^9.1.17", optional = true}
mkdocs-gen-files = {version = "^0.5.0", optional = true}
mkdocstrings = {version = "^0.22.0", optional = true, extras = ["python"]}
[tool.poetry.extras]
dev = [
"pytest",
"mkdocs",
"pytest-cov",
"coverage",
"mkdocs-material",
"mkdocstrings",
"mkdocs-gen-files",
]
[tool.pytest.ini_options]
addopts = "-v --cov=./src --cov-report=html --cov-append"
[tool.poetry.scripts]
theboringlibrary = "theboringlibrary.core:print_nothing"
[tool.coverage.report]
omit = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"