1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2024-12-22 07:43:09 +00:00
vorta/setup.py
Manuel Riel 6e0904647b
Translation-related improvements and German translation (#146)
* Add translations with a minimum of 90% completion.
* Adjust packaging to include compiled .qm files. Fixes #135
* Improve repo tab layout. Avoid overflowing lines. #139
2019-01-20 22:46:01 +08:00

8 lines
194 B
Python

from setuptools import setup, find_packages
setup(
include_package_data=True,
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={'vorta.i18n': ['qm/*.qm']}
)