-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
57 lines (47 loc) · 1 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
[tool.poetry]
name = "wsl-tools"
version = "0.2.1"
description = "WSL utilities library"
authors = ["Andrea Ghensi"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
pyxdg = "^0.27"
[tool.poetry.dev-dependencies]
pre-commit = "^2.9.3"
black = "^20.8b1"
pytest = "^6.1.2"
coverage = "^5.3"
mypy = "^0.790"
pytest-cov = "^2.10.1"
portray = "^1.4.0"
commitizen = "^2.13.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["wsl_tools"]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING",
"if __name__ == .__main__.:"
]
[tool.black]
line-length = 80
[tool.portray]
modules = ["wsl_tools"]
[[tool.portray.mkdocs.nav]]
Home = "README.md"
[[tool.portray.mkdocs.nav]]
Contributing = "CONTRIBUTING.md"
[tool.commitizen]
version = "0.2.1"
version_files = [
"pyproject.toml:version"
]
tag_format = "v$version"