-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
40 lines (34 loc) · 914 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
[versioneer]
VCS = git
style = pep440-pre
versionfile_source = temporal_networks_ode/_version.py
versionfile_build = temporal_networks_ode/_version.py
tag_prefix = v
#parentdir_prefix =
[tool:pytest]
# flake8 section for pytest-flake8 plugin
# 401 = imported but unused, 403 = import *, 731 = assign to lambda
flake8-exclude = temporal_networks_ode/_version.py
flake8-ignore =
*.py D213
*.py D401
*.py E731
__init__.py F401
*.py F403
*.py W503
flake8-max-complexity = -1
flake8-max-line-length = 140
flake8-import-order = pep8
[flake8]
exclude = doc, build, tests, example, temporal_networks_ode/_version.py
# 401 = imported but unused, 403 = import *, 731 = assign to lambda
ignore = E731, F401, F403, W503
max-complexity = -1
max-line-length = 140
[pep8]
max-line-length = 140
[pydocstyle]
ignore = D213,D401,D101,D105,D203
[coverage:run]
omit = tests/*
temporal_networks_ode/_version.py