-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsetup.py
46 lines (39 loc) · 1.36 KB
/
setup.py
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
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/python
# vi:tabstop=4:expandtab:sw=4
import os
from setuptools import setup
def get_long_description():
with open(os.path.join(os.path.dirname(__file__), "README.rst"), encoding='utf-8') as fp:
return fp.read()
setup(
name='Unidecode',
version='1.3.8',
description='ASCII transliterations of Unicode text',
license='GPL',
long_description=get_long_description(),
author='Tomaz Solc',
author_email='[email protected]',
packages=['unidecode'],
package_data={'unidecode': ['py.typed']},
python_requires=">=3.7",
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 :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Text Processing",
"Topic :: Text Processing :: Filters",
],
)