-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
31 lines (27 loc) · 927 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import io
with io.open('README.md', 'rt', encoding='utf8') as f:
readme = f.read()
setup(
name="ml2en",
version="v1.0.0",
description="A transliteration algorithm to transliterate Malayalam unicode strings to 'Manglish'",
long_description_content_type="text/markdown",
long_description=readme,
author="Kailash Nadh",
author_email="[email protected]",
url="https://github.com/knadh/ml2en",
packages=['ml2en'],
download_url="https://github.com/knadh/ml2en",
license="GPLv2",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)