-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
53 lines (44 loc) · 1.06 KB
/
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
[versioneer]
VCS = git
style = pep440
versionfile_source = unification/_version.py
versionfile_build = unification/_version.py
tag_prefix = v
parentdir_prefix = unification-
[pydocstyle]
# Ignore errors for missing docstrings.
# Ignore D202 (No blank lines allowed after function docstring)
# due to bug in black: https://github.com/ambv/black/issues/355
add-ignore = D100,D101,D102,D103,D104,D105,D106,D107,D202
convention = numpy
[tool:pytest]
python_functions=test_*
python_files=test*.py
testpaths=tests
[coverage:run]
relative_files = True
omit =
unification/_version.py
tests/*
[coverage:report]
exclude_lines =
pragma: no cover
raise NotImplementedError
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
[flake8]
max-line-length = 88
extend-ignore = E203, W503
per-file-ignores =
**/__init__.py:F401,E402,F403
examples/account.py:F811
tests/test_match.py:F811
[pylint]
max-line-length = 88
[pylint.messages_control]
disable = C0330, C0326