-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
74 lines (64 loc) · 1.55 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
72
73
74
[metadata]
name = visual-behavior
version = 0.13.2
description = "analysis package for visual behavior"
authors = ["Marina Garrett", "Doug Ollerenshaw"]
author_email="[email protected], [email protected]",
url = "https://github.com/AllenInstitute/visual_behavior_analysis"
[options]
packages=find:
install_requires =
allensdk>=2.11.3
scikit-learn>=0.24.2
python-dateutil>=2.6.1
scipy<=1.4.1
zipfile36
pymongo
pyyaml
opencv-python
dash
plotly
hdmf
h5py
umap-learn
[options.extras_require]
DEV =
pytest
bumpversion==0.5.3
flake8
pytest-cov
pytest-html
coverage
markupsafe==2.0.1
[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}
[bumpversion:file:setup.py]
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/*