offlate/setup.py

setup.py

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