-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
63 lines (53 loc) · 1.84 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
56
57
58
59
60
61
62
63
[metadata]
author = F-Droid Community
author_email = [email protected]
keywords = android, app store, repository
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Environment :: Web Environment
Framework :: Django
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Utilities
Topic :: System :: Software Distribution
long_description = file: README.md
description-file = README.md
license_file = LICENSE
# post release files with: twine upload --sign dist/repomaker-*.tar.gz
[aliases]
release = version_check repomaker_static_check compile_catalog sdist
# All this below is for Babel config. Ideally we would only use
# Babel, but it is still missing some key features that gettext gives
# us. So for now, this Babel setup is just to make it easy for Python
# people who are used to it. Babel is missing:
#
# * properly tagging various Python formats in the comments
# * --add-location=file
# * --join-existing
# * --sort-output on update
#
# So for now the canonical way to update the template and translation
# files is: `make -C locale`
[extract_messages]
keywords = _
charset = UTF-8
sort_output = true
no_location = true
add-comments = true
output_file = repomaker/locale/django.pot
msgid-bugs-address = https://gitlab.com/fdroid/repomaker/issues
[update_catalog]
input_file = repomaker/locale/django.pot
output_dir = repomaker/locale
[init_catalog]
input_file = repomaker/locale/django.pot
output_dir = repomaker/locale
[compile_catalog]
domain = django
directory = repomaker/locale