-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.cfg
42 lines (33 loc) · 928 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
[bumpversion]
current_version = 3.0.10
commit = True
tag = True
tag_name = {new_version}
[aliases]
test = pytest
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[compile_catalog]
directory = inspire_crawler/translations/
[extract_messages]
copyright_holder = CERN
msgid_bugs_address = [email protected]
mapping-file = babel.ini
output-file = inspire_crawler/translations/messages.pot
add-comments = NOTE
[init_catalog]
input-file = inspire_crawler/translations/messages.pot
output-dir = inspire_crawler/translations/
[update_catalog]
input-file = inspire_crawler/translations/messages.pot
output-dir = inspire_crawler/translations/
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:inspire_crawler/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"