Release 0.2
Makefile
25 | 25 | gpg --detach-sign -a dist/*.tar.gz | |
26 | 26 | twine upload dist/* | |
27 | 27 | ||
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 | + | ||
28 | 34 | update-data: | |
29 | 35 | python3 extractdata.py | |
30 | 36 |
README.md
22 | 22 | ----------------------------- | |
23 | 23 | ||
24 | 24 | 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
9 | 9 | ||
10 | 10 | setup ( | |
11 | 11 | name="offlate", | |
12 | - | version="0.1.1.dev", | |
12 | + | version="0.2.0", | |
13 | 13 | packages=find_packages(exclude=['.guix-profile*']), | |
14 | 14 | python_requires = '>=3', | |
15 | - | install_requires=['polib', 'ruamel.yaml', 'python-dateutil'], | |
15 | + | install_requires=['polib', 'ruamel.yaml', 'python-dateutil', 'PyQt5'], | |
16 | 16 | entry_points={ | |
17 | 17 | 'gui_scripts': [ | |
18 | 18 | 'offlate=offlate.window:main', |