summaryrefslogtreecommitdiff
path: root/setup.py
blob: aa0f721f1aa5b6edcc6f5f0bd000a2638d7e7a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/python

import os
from setuptools import setup


def get_long_description():
    return open(os.path.join(os.path.dirname(__file__), "README.rst")).read()

setup(
    name='Unidecode',
    version='0.04.19',
    description='ASCII transliterations of Unicode text',
    license='GPL',
    long_description=get_long_description(),
    author='Tomaz Solc',
    author_email='tomaz.solc@tablix.org',

    packages=['unidecode'],

    test_suite='tests',

    entry_points={
        'console_scripts': [
            'unidecode = unidecode.util:main'
        ]
    },
    classifiers=[
        "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 3",
        "Topic :: Text Processing",
        "Topic :: Text Processing :: Filters",
    ],
)