-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (45 loc) · 1.24 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
#######################
# Wheel Configuration #
#######################
[bdist_wheel]
#############################
# Bumpversion Configuration #
# (.bumpversion) #
#############################
[bumpversion]
current_version = 0.1.0-dev
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P<build>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?
serialize =
{major}.{minor}.{patch}-{release}+{build}
{major}.{minor}.{patch}+{build}
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = production
first_value = dev
values =
dev
production
[bumpverion:part:build]
values = [0-9A-Za-z-]+
[bumpversion:file:src/ocspdash/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bumpversion:file:src/ocspdash/constants.py]
search = VERSION = '{current_version}'
replace = VERSION = '{new_version}'
##########################
# Coverage Configuration #
# (.coveragerc) #
##########################
[coverage:run]
branch = True
source = ocspdash
[coverage:paths]
source =
src/ocspdash
.tox/*/lib/python*/site-packages/ocspdash
[coverage:report]
show_missing = True