forked from openpolis/ooetl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
33 lines (26 loc) · 791 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
[bumpversion]
current_version = 1.2.2
commit = True
tag = True
tag_name = v{new_version}
[bumpversion:file:ooetl/__init__.py]
serialize = {major}.{minor}.{patch}
parse = "(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)"
[bumpversion:file:ooetl/tests/test_ooetl.py]
serialize = {major}.{minor}.{patch}
parse = "(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)"
[bumpversion:file:pyproject.toml]
serialize = {major}.{minor}.{patch}
parse = "(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)"
[bumpversion:file:ooetl/docs/conf.py]
serialize = {major}.{minor}.{patch}
parse = "(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)"
[flake8]
max-line-length = 120
exclude = .tox,.git,.venv
statistics = true
[pycodestyle]
max-line-length = 120
exclude = .tox,.git,.venv
[coverage:run]
source = ./ooetl