-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
23 lines (21 loc) · 1.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
from codecs import open
setup(name='pytamil',
version='1',
description=u'A library for Tamil text processing and conjunction rules from rule-set EBNF. தமிழ் எழுத்து மற்றும் புணர்ச்சி விதிகளைக்கொண்ட நிரல் தொகுப்பு',
author='Sriramkumar VH',
author_email='[email protected]',
url='https://github.com/srix/pytamil.git',
packages=['pytamil','pytamil/தமிழ்','pytamil/தமிழ்/யாப்பு/','pytamil/தமிழ்/யாப்பு/codegen'],
package_dir={'pytamil':'pytamil'},
package_data={'pytamil': ['தமிழ்/*.yaml','தமிழ்/*.ebnf']},
license='MIT',
scripts=[],
platforms='PC,Linux,Mac',
classifiers=['Natural Language :: Tamil',
'Programming Language :: Python :: 3',],
long_description=open('README.md','r','UTF-8').read(),
download_url='',
)