-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.cfg
54 lines (47 loc) · 1022 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
[mypy]
ignore_missing_imports = True
warn_redundant_casts = True
strict_optional = True
disallow_untyped_defs = True
warn_return_any = True
no_implicit_optional = True
[mypy-landshark._version]
ignore_errors = True
[flake8]
ignore =
D105 # Missing docstring in magic method
D107 # Missing docstring in __init__
E133 # closing bracket is missing indentation
max-line-length = 79
max-complexity = 10
hang-closing = True
exclude =
.git,
__pycache__,
test_output,
landshark.egg-info
landshark/_version.py
versioneer.py
inline-quotes = double
[isort]
skip =
.eggs/
versioneer.py
not_skip = __init__.py
line_length = 79
known_first_party=versioneer
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[coverage:run]
omit =
landshark/_version.py
[coverage:report]
fail_under = 15
[pydocstyle]
convention = numpy
[versioneer]
VCS = git
style = pep440
versionfile_source = landshark/_version.py
versionfile_build = landshark/_version.py
tag_prefix =
parentdir_prefix = landshark-