-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
53 lines (45 loc) · 996 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
49
50
51
52
53
[build-system]
requires = ["setuptools >= 43", "wheel", "setuptools_scm[toml] >= 3.4"]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
omit = [
"*/setup.py",
"*/tests/*",
"*/build/*",
"*/dist/*",
"*/.tox/*",
"*/.egg/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
]
[tool.isort]
known_first_party = "lithium"
profile = "black"
[tool.mypy]
strict = true
ignore_missing_imports = true
show_error_codes = true
[tool.pylint.format]
max-line-length = 88
[tool.pylint.messages_control]
disable = [
"duplicate-code",
"fixme",
"import-error",
"logging-fstring-interpolation",
"subprocess-run-check",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-lines",
"too-many-locals",
"too-many-nested-blocks",
"too-many-statements",
"unspecified-encoding",
]
[tool.pytest.ini_options]
log_level = "DEBUG"
[tool.setuptools_scm]