Fix build system
offlate/systems/__init__.py unknown status 1
setup.py
5 | 5 | version="0.1.dev", | |
6 | 6 | packages=find_packages(exclude=['.guix-profile*']), | |
7 | 7 | python_requires = '>=3', | |
8 | - | install_requires=['polib', 'PyYAML', 'dateutil'], | |
8 | + | install_requires=['polib', 'ruamel.yaml', 'python-dateutil'], | |
9 | 9 | entry_points={ | |
10 | 10 | 'gui_scripts': [ | |
11 | 11 | 'offlate=offlate.window:main', | |
12 | 12 | ] | |
13 | 13 | }, | |
14 | 14 | ||
15 | - | package_data={'offlate': ['data.json']}, | |
15 | + | package_data={'offlate': ['offlate/data.json']}, | |
16 | 16 | ||
17 | 17 | author="Julien Lepiller", | |
18 | 18 | author_email="julien@lepiller.eu", |