-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 670 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 670 Bytes
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
[build-system]
requires = [ # PEP 508 specs
"setuptools >= 40.9.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
branch = true
source = ["qmm", "run.py"]
omit = [
"*/tests/*",
"docs/**"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:"
]
fail_under = 0
[tool.pytest.ini_options]
testpaths = ['tests']
addopts = ""
[tool.black]
line-length = 98
target-version = ['py38']
#check = true
[tool.isort]
multi_line_output = 3
line_length = 98
known_third_party = ["pyqt5"]
include_trailing_comma = true
skip_glob = "tests/**,docs/**"
skip_gitignore = false
use_parentheses = true