diff --git a/setup.py b/setup.py index 50054f0..1539b77 100644 --- a/setup.py +++ b/setup.py @@ -5,8 +5,8 @@ setup( name='pynutshell', - version='1.0.1', - packages=find_packages(exclude=['tests', 'tests.*']), + version='1.0.2', + packages=find_packages(exclude=['tests', 'tests.*', '.github']), install_requires=[ 'numpy', 'networkx', @@ -14,10 +14,13 @@ ], url='https://github.com/KrishnanSG/Nutshell', author='Krishnan S G, Shruthi Abirami', + description="An unsupervised text summarization and information retrieval library under the hood using natural " + "language processing models.", author_email='krishsg525@gmail.com', long_description=long_description, long_description_content_type="text/markdown", - keywords="nutshell, text, summarization, ranking, information retrieval, similarity, keyword extraction, nltk", + keywords="text, summarization, nutshell, ranking, information, retrieval, similarity, keyword, extraction, nlp, " + "natural, language, nltk, tokenizer, pagerank, textrank, bm25plus", classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",