-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
35 lines (32 loc) · 1.14 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# (C) 2021 எழில் மொழி அறக்கட்டளை
from setuptools import setup
from codecs import open
long_description = open('README.md','r','UTF-8').read()
setup(name='TamilNLP',
version='1.0',
description='TamilNLP tools for Python v3',
author='Ashok Ramachandran',
author_email='[email protected]',
long_description=long_description,
url='https://github.com/AshokR/TamilNLP.git',
packages=['tamilnlp'],
package_dir={'tamilnlp': 'tamilnlp/'},
package_data={'tamilnlp': ['Resources/*.*','Resources/ParallelText/','Resources/unmunch/']},
license='APACHE',
install_requires=[
'nltk>=3.4.5',
'tamil>=0.98',
'wikiapi',
'requests>=2.23.0'
],
platforms='PC,Linux,Mac',
classifiers=['Natural Language :: Tamil',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8'],
download_url='https://github.com/AshokR/TamilNLP/archive/master.zip',
)