forked from pennsignals/dsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 835 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
[project]
name = "dsdk"
authors = [
"Michael Becker",
"Corey Chivers",
"Jason Lubken"
]
license = "MIT"
python = "^3.7"
readme = "README.rst"
[build-system]
requires = [
"setuptools>=42.8.0",
"setuptools_scm[toml]>=3.3.3",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
target-version = ["py37","py38"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.report]
exclude_lines = [
"raise NotImplementedError()",
"pragma: nocover",
"if __name__ == .__main__.:",
]
precision = 2
show_missing = true
[tool.coverage.run]
branch = true
source = ["dsdk", "test"]
parallel = true
[tool.isort]
include_trailing_comma = true
line_length = 79
multi_line_output = 3
known_first_party = ["dsdk"]
default_section = "THIRDPARTY"
[tool.setuptools_scm]