forked from peterdemin/pip-compile-multi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
41 lines (32 loc) · 742 Bytes
/
setup.cfg
File metadata and controls
41 lines (32 loc) · 742 Bytes
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
[bumpversion]
current_version = 1.3.3
commit = True
tag = True
[wheel]
universal = 1
[bdist_wheel]
universal = 1
[bumpversion:file:setup.py]
search = VERSION = "{current_version}"
replace = VERSION = "{new_version}"
[bumpversion:file:pipcompilemulti/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[requirements:Python 2]
python = 2
include_names = py27, local27
[requirements:Python 2 hash]
python = 2
include_names = py27, local27
add_hashes = py27, local27
in_ext = txt
out_ext = hash
[requirements:Python 3]
python = 3.4
include_names = local, testwin
[requirements:Python 3 hash]
python = 3.4
include_names = local, testwin
add_hashes = local, testwin
in_ext = txt
out_ext = hash