|
import setuptools |
|
|
|
with open("README.md", "r") as fh: |
|
long_description = fh.read() |
|
|
|
setuptools.setup( |
|
name="indic_nlp_library", |
|
version="0.71", |
|
author="Anoop Kunchukuttan", |
|
author_email="[email protected]", |
|
description="The goal of the Indic NLP Library is to build Python based libraries for common"\ |
|
' text processing and Natural Language Processing in Indian languages.', |
|
long_description=long_description, |
|
long_description_content_type="text/markdown", |
|
url="https://github.com/anoopkunchukuttan/indic_nlp_library", |
|
|
|
|
|
|
|
|
|
|
|
packages=setuptools.find_packages(), |
|
license='MIT', |
|
classifiers=[ |
|
"Programming Language :: Python :: 3", |
|
"License :: OSI Approved :: MIT License", |
|
"Operating System :: OS Independent", |
|
], |
|
python_requires='>=3.5', |
|
download_url='https://github.com/anoopkunchukuttan/indic_nlp_library/archive/master.zip', |
|
install_requires=[ |
|
'morfessor', |
|
'pandas', |
|
'numpy', |
|
] |
|
) |
|
|