File size: 1,276 Bytes
158b61b |
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 36 |
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="indic_nlp_library", # Replace with your own username
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",
# project_urls={
# "Bug Tracker": "https://bugs.example.com/HelloWorld/",
# "Documentation": "https://docs.example.com/HelloWorld/",
# "Source Code": "https://code.example.com/HelloWorld/",
# },
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',
]
)
|