setup.py
| 1 | from setuptools import setup, find_packages |
| 2 | |
| 3 | setup ( |
| 4 | name="offlate", |
| 5 | version="0.1.dev", |
| 6 | packages=find_packages(exclude=['.guix-profile*']), |
| 7 | python_requires = '>=3', |
| 8 | install_requires=['polib', 'PyYAML', 'dateutil'], |
| 9 | entry_points={ |
| 10 | 'gui_scripts': [ |
| 11 | 'offlate=offlate.window:main', |
| 12 | ] |
| 13 | }, |
| 14 | |
| 15 | data_files=[('config', ['data.json']),], |
| 16 | package_data={'offlate': ['data.json']}, |
| 17 | |
| 18 | author="Julien Lepiller", |
| 19 | author_email="julien@lepiller.eu", |
| 20 | description="Offline translation interface for online translation tools.", |
| 21 | license="GPLv3+", |
| 22 | keywords="translation", |
| 23 | url="https://framagit.org/tyreunom/offlate", |
| 24 | classifiers=[ |
| 25 | # How mature is this project? Common values are |
| 26 | # 3 - Alpha |
| 27 | # 4 - Beta |
| 28 | # 5 - Production/Stable |
| 29 | 'Development Status :: 3 - Alpha', |
| 30 | |
| 31 | # Indicate who your project is intended for |
| 32 | 'Intended Audience :: End Users/Desktop', |
| 33 | 'Topic :: Software Development :: Localization', |
| 34 | |
| 35 | # Pick your license as you wish (should match "license" above) |
| 36 | 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', |
| 37 | |
| 38 | # Specify the Python versions you support here. In particular, ensure |
| 39 | # that you indicate whether you support Python 2, Python 3 or both. |
| 40 | 'Programming Language :: Python :: 3', |
| 41 | ], |
| 42 | ) |
| 43 |