-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
58 lines (51 loc) · 1.14 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
[build-system]
requires = ["setuptools>=60", "wheel"]
# build-backend = "setuptools.build_meta"
[tool.coverage.run]
cover_pylib = true
include = ["*/nc_py_api/*"]
omit = ["*/tests/nc_py_api/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"DeprecationWarning",
"DEPRECATED"
]
[tool.black]
line-length = 120
target-versions = ["py39"]
preview = true
[tool.isort]
profile = "black"
[tool.pylint]
master.py-version = "3.9"
master.extension-pkg-allow-list = [""]
design.max-attributes = 9
design.max-locals = 16
design.max-returns = 8
basic.good-names = [
"a", "b", "c", "d", "e", "f", "i", "j", "k", "v",
"ex", "_", "fp", "im",
]
reports.output-format = "colorized"
similarities.ignore-imports = "yes"
messages_control.disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"line-too-long",
]
[tool.mypy]
ignore_missing_imports = false
warn_no_return = true
strict_optional = true
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests/nc_py_api",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
log_cli = true