forked from Ezhil-Language-Foundation/open-tamil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.5 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# (C) 2013-2016, 2017 முத்தையா அண்ணாமலை
# open-tamil project
from distutils.core import setup
from codecs import open
setup(name='Open-Tamil',
version='0.7',
description='Tamil language text processing tools for Python v2, v3',
author='M. Annamalai, T. Arulalan, and other contributors',
author_email='[email protected]',
url='https://github.com/Ezhil-Language-Foundation/open-tamil',
packages=['tamil','transliterate','ngram','tamil.txt2ipa','tamil.txt2unicode','tamil.utils', 'solthiruthi','spell'],
package_dir={'solthiruthi': 'solthiruthi'},
package_data={'solthiruthi': ['data/*.txt']},
license='MIT',
scripts=['examples/tamilwordcount.py','examples/tamilwordfilter.py','examples/tamilurlfilter.py',
'examples/tamilphonetic.py','examples/tamiltscii2utf8.py','examples/tamilwordgrid.py','examples/tamilspell.py',
'examples/solpattiyal.py'],
platforms='PC,Linux,Mac',
classifiers=['Natural Language :: Tamil',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'],
long_description=open('README.md','r','UTF-8').read(),
download_url='https://github.com/Ezhil-Language-Foundation/open-tamil/archive/master.zip',#pip
)