Fix build system

Julien LepillerWed May 09 21:25:37+0200 2018

341bf44

Fix build system

offlate/systems/__init__.py unknown status 1

setup.py

55
    version="0.1.dev",
66
    packages=find_packages(exclude=['.guix-profile*']),
77
    python_requires = '>=3',
8-
    install_requires=['polib', 'PyYAML', 'dateutil'],
8+
    install_requires=['polib', 'ruamel.yaml', 'python-dateutil'],
99
    entry_points={
1010
        'gui_scripts': [
1111
            'offlate=offlate.window:main',
1212
        ]
1313
    },
1414
15-
    package_data={'offlate': ['data.json']},
15+
    package_data={'offlate': ['offlate/data.json']},
1616
1717
    author="Julien Lepiller",
1818
    author_email="julien@lepiller.eu",