Release 0.2

Julien LepillerSat Oct 13 13:42:01+0200 2018

124fd27

Release 0.2

Makefile

2525
	gpg --detach-sign -a dist/*.tar.gz
2626
	twine upload dist/*
2727
28+
test-upload:
29+
	rm -rf dist
30+
	python3 setup.py sdist
31+
	gpg --detach-sign -a dist/*.tar.gz
32+
	twine upload -r pypitest dist/*
33+
2834
update-data:
2935
	python3 extractdata.py
3036

README.md

2222
-----------------------------
2323
2424
Offlate currently supports getting translations from and sending them to the
25-
[Translation Project](https://translationproject.org).
25+
[Translation Project](https://translationproject.org) and
26+
[Transifex](https://transifex.org).
27+
28+
Transifex only allows us to translate files in their original formats, so
29+
we only support transifex projects for which we support the format. See the
30+
following section for more info on supported formats.
31+
32+
Currently Supported Formats
33+
---------------------------
34+
35+
Currently, offlate supports gettext files (.po) for the Translation Project
36+
and Yaml files for transifex.

setup.py

99
1010
setup (
1111
    name="offlate",
12-
    version="0.1.1.dev",
12+
    version="0.2.0",
1313
    packages=find_packages(exclude=['.guix-profile*']),
1414
    python_requires = '>=3',
15-
    install_requires=['polib', 'ruamel.yaml', 'python-dateutil'],
15+
    install_requires=['polib', 'ruamel.yaml', 'python-dateutil', 'PyQt5'],
1616
    entry_points={
1717
        'gui_scripts': [
1818
            'offlate=offlate.window:main',