forked from kornia/kornia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (54 loc) · 985 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
61
62
[aliases]
test=pytest
[tool:pytest]
norecursedirs =
.git
.github
dist
build
addopts =
--strict
--color=yes
[bdist_wheel]
universal=1
[metadata]
license_file = LICENSE
[flake8]
max-line-length = 120
exclude =
docs
versioneer.py
kornia/_version.py
per-file-ignores =
__init__.py: F401, F403
verbose = 2
ignore =
W503 # Ignore "Line break occurred before a binary operator"
E203 # Ignore "whitespace before ':'"
[mypy]
files = kornia, test
pretty = True
show_error_codes = True
ignore_missing_imports = True
[pydocstyle]
match = .*\.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
kornia
tests
order_by_type = False
# 3 - Vertical Hanging Indent
multi_line_output = 3
include_trailing_comma = True
skip=kornia/__init__.py