-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.cfg
More file actions
35 lines (29 loc) · 848 Bytes
/
setup.cfg
File metadata and controls
35 lines (29 loc) · 848 Bytes
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
[bumpversion]
current_version = 0.13.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<n>\d+))?
serialize =
{major}.{minor}.{patch}.{release}{n}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = gamma
values =
dev
a
b
rc
gamma
[bumpversion:part:n]
[bumpversion:file:visual_behavior/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:setup.cfg]
search = version = {current_version}
replace = version = {new_version}
[flake8]
ignore = E501, E201, E202, W503, E712, W504
exclude = git/*, notebooks/*, tests/*, scripts/*, *pilot_manuscript_figures.py,
[coverage:run]
omit = tests/*, visual_behavior/cohorts/*, visual_behavior/inscopix/*, scripts/*,
notebooks/*, circleci/*, .git/*, .tox/*, .cache/*