From 1d73bc5757f7834764f025859cf3cdf4209d7626 Mon Sep 17 00:00:00 2001 From: KrishnanSG Date: Fri, 4 Dec 2020 16:25:03 +0530 Subject: [PATCH] Bump version from 1.0.1 -> 1.0.2. Add description and more keywords. --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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",