from setuptools import setup, find_packages setup ( name="offlate", version="0.1.dev", packages=find_packages(exclude=['.guix-profile*']), python_requires = '>=3', install_requires=['polib', 'PyYAML', 'dateutil'], entry_points={ 'gui_scripts': [ 'offlate=offlate.window:main', ] }, data_files=[('config', ['data.json']),], package_data={'offlate': ['data.json']}, author="Julien Lepiller", author_email="julien@lepiller.eu", description="Offline translation interface for online translation tools.", license="GPLv3+", keywords="translation", url="https://framagit.org/tyreunom/offlate", classifiers=[ # How mature is this project? Common values are # 3 - Alpha # 4 - Beta # 5 - Production/Stable 'Development Status :: 3 - Alpha', # Indicate who your project is intended for 'Intended Audience :: End Users/Desktop', 'Topic :: Software Development :: Localization', # Pick your license as you wish (should match "license" above) 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: Python :: 3', ], )