-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (39 loc) · 992 Bytes
/
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
[tool.poetry]
name = "aaargs"
version = "0.1.3"
description = "attribute autocompletion and argument parsing"
authors = ["zincwarecode <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
keywords = ["argparse", "dataclass", "zninit"]
[tool.poetry.dependencies]
python = "^3.8"
zninit = "^0.1.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
black = "^22.10.0"
isort = "^5.10.1"
ruff = "^0.0.94"
coverage = "^6.5.0"
[tool.poetry.urls]
repository = "https://github.com/zincware/aaargs"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
preview = true
[tool.coverage.run]
relative_files = true
branch = true
# omit the tests themselves
omit = ["*/tests/*", "*/tmp/*", "*/interface/*"]
[tool.coverage.report]
exclude_lines = [
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:"
]
ignore_errors = true
[tool.coverage.html]
directory = "coverage_html_report"