-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
71 lines (61 loc) · 1.32 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[bumpversion]
current_version = 0.1.14
commit = True
tag = True
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:src/epistoch/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:src/pyphase/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']
addopts =
--verbose
--color=yes
--ignore=build/private
--doctest-modules
--cov epistoch
--cov pyphase
--cov-fail-under 50
--deselect=src/epistoch/experimental/
tests
python_files = *.py
filterwarnings =
ignore::PendingDeprecationWarning
[coverage:run]
branch = true
parallel = true
omit =
src/epistoch/experiments.py
src/epistoch/experimental/
src/epistoch/experimental/sir_gen_experimental.py
[coverage:paths]
source =
src/
[isort]
known_third_party = matplotlib,numpy,pandas,pyphase,pytest,scipy,setuptools,tqdm
known_first_party = epistoch, pyphase
line_length = 120
multi_line_output = 3
include_trailing_comma = true
skip = docs/conf.py
skip_glob = .tox*
[flake8]
max-line-length = 120
ignore = E741,E731
per-file-ignores =
**/__init__.py:F403,F401
docs/conf.py:E402
exclude =
docs
.tox
.tox-win
.eggs