forked from GeoStat-Framework/welltestpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.15 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
58
59
60
61
62
63
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm[toml]>=3.5",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "welltestpy/_version.py"
write_to_template = "__version__ = '{version}'"
local_scheme = "no-local-version"
fallback_version = "0.0.0.dev0"
[tool.black]
exclude = "_version.py"
line-length = 79
target-version = [
"py36",
"py37",
"py38",
]
[tool.coverage]
[tool.coverage.run]
source = ["welltestpy"]
omit = [
"*docs*",
"*examples*",
"*tests*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == '__main__':",
"def __repr__",
"def __str__",
]
[tool.pylint]
[tool.pylint.master]
extension-pkg-whitelist = [
"numpy",
"scipy",
]
ignore = "_version.py"
[tool.pylint.message_control]
disable = [
"R0801",
]
[tool.pylint.reports]
output-format = "colorized"
[tool.pylint.design]
max-args = 20
max-locals = 50
max-branches = 30
max-statements = 80
max-attributes = 25
max-public-methods = 75