|
a |
|
b/setup.cfg |
|
|
1 |
[bumpversion] |
|
|
2 |
current_version = 0.9.0 |
|
|
3 |
message = :bookmark: Bump version: {current_version} → {new_version} |
|
|
4 |
tag_message = :bookmark: Bump version: {current_version} → {new_version} |
|
|
5 |
commit = True |
|
|
6 |
tag = False |
|
|
7 |
|
|
|
8 |
[bumpversion:file:setup.py] |
|
|
9 |
search = version="{current_version}" |
|
|
10 |
replace = version="{new_version}" |
|
|
11 |
|
|
|
12 |
[bumpversion:file:wsic/__init__.py] |
|
|
13 |
search = __version__ = "{current_version}" |
|
|
14 |
replace = __version__ = "{new_version}" |
|
|
15 |
|
|
|
16 |
[bdist_wheel] |
|
|
17 |
universal = 1 |
|
|
18 |
|
|
|
19 |
[flake8] |
|
|
20 |
exclude = docs |
|
|
21 |
max-line-length = 88 |
|
|
22 |
extend-ignore = |
|
|
23 |
E203, |
|
|
24 |
per-file-ignores = |
|
|
25 |
tests/*: S101 |
|
|
26 |
docs/conf.py: E800 |
|
|
27 |
max-cognitive-complexity = 10 |
|
|
28 |
|
|
|
29 |
[tool:pytest] |
|
|
30 |
addopts = --cov-config=setup.cfg --ignore=setup.py --cov=wsic --cov-report=term --cov-report=xml:coverage.xml --cov-report=html --durations=10 --durations-min=10 |
|
|
31 |
timeout = 60 |
|
|
32 |
norecursedirs = *.zarr |
|
|
33 |
|
|
|
34 |
[tool:isort] |
|
|
35 |
profile = black |