forked from opencobra/cobrapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (44 loc) · 944 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
[bumpversion]
current_version = 0.8.2
commit = True
tag = True
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a]*)(?P<num>\d*)
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
tag_name = {new_version}
[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
placeholder
a
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:cobra/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[wheel]
universal = 1
[flake8]
max-line-length = 79
exclude = __init__.py,docs
[pydocstyle]
match_dir = cobra
convention = numpy
match = (?!test_).*\.py
[aliases]
test = pytest
[tool:pytest]
testpaths = cobra/test
[isort]
not_skip = __init__.py
indent = 4
line_length = 79
multi_line_output = 4
known_third_party = future,six
known_first_party = cobra