-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
60 lines (50 loc) · 931 Bytes
/
setup.cfg
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
[aliases]
test=pytest
[tool:pytest]
addopts =
-v --color=yes
--pydocstyle --mypy --flake8
--cov=limbus --cov-report=term-missing --cov-config=setup.cfg
norecursedirs =
.git
.github
dist
build
asyncio_mode=auto
[bdist_wheel]
universal=1
[metadata]
license_file = LICENSE
[flake8]
max-line-length = 120
ignore =
W504
E722
F401
F541
exclude = docs/src
[mypy]
files = examples, limbus, tests, limbus_config
show_error_codes = True
ignore_missing_imports = True
[pydocstyle]
match=(?!test_|__|setup).*\.py
ignore = D105, D107, D203, D204, D213, D406, D407
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
raise
if 0:
if __name__ == .__main__.:
[isort]
line_length = 120
known_first_party =
examples
limbus
tests
order_by_type = False
# 3 - Vertical Hanging Indent
multi_line_output = 3
include_trailing_comma = True