forked from sarves/thamizhilip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.01 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
from setuptools import setup, find_packages
VERSION = '0.1.2'
DESCRIPTION = "ThamizhiLIP"
LONG_DESCRIPTION = "Thamizhi Linguistic Information Processing Tools for Tamil Language Processing"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="thamizhilip",
version=0.11,
author="Kengatharaiyer Sarveswaran",
author_email="<[email protected]>",
description="ThamizhiLIP",
long_description="Thamizhi Linguistic Information Processing Tools for Tamil Language Processing",
packages=find_packages(),
license="Apache License, Version 2.0",
install_requires=["stanza"],
keywords=['Thamizhi', 'Tamil', 'Tamil NLP'],
python_requires='>=3.6',
classifiers= [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
)