-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
59 lines (49 loc) · 989 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
54
55
56
57
58
59
[bumpversion]
current_version = 2.1.12.dev0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}
[bumpversion:file:setup.py]
search = {current_version}
replace = {new_version}
[bumpversion:file:napari_allencell_segmenter/__init__.py]
search = {current_version}
replace = {new_version}
[bumpversion:part:release]
optional_value = prod
first_value = dev
values =
dev
prod
[bdist_wheel]
universal = 1
[flake8]
exclude =
docs/
*/_tests/*
ignore =
E203
W291
W503
W293
E261
max-line-length = 120
[aliases]
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']
filterwarnings =
ignore::UserWarning
ignore::FutureWarning
[coverage:run]
omit =
*/_tests/*
**/__init__.py
[options.entry_points]
napari.manifest =
example-plugin = napari_allencell_segmenter:napari.yaml
[options.package_data]
example-plugin = napari.yaml