-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
47 lines (41 loc) · 860 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 80
[tool.coverage.run]
omit = ["tests/typing_example.py"]
[tool.coverage.paths]
source = ["src", ".tox/*/site-packages"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.isort]
atomic=true
force_grid_wrap=0
include_trailing_comma=true
known_first_party = ["backports.zoneinfo"]
known_third_party=[
"click",
"dateutil",
"hypothesis",
"pint",
"pytest",
"pytz",
"requests",
]
multi_line_output=3
use_parentheses=true
[tool.pylint.'MESSAGES CONTROL']
disable="all"
enable="""
unused-import,
unused-variable,
unpacking-non-sequence,
invalid-all-object,
used-before-assignment,
no-else-raise,
bad-format-character,
bad-format-string,
bare-except,
"""