-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version from 1.0.1 -> 1.0.2. Add description and more keywords.
- Loading branch information
1 parent
edcb617
commit 1d73bc5
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,19 +5,22 @@ | |
|
||
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', | ||
'nltk' | ||
], | ||
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='[email protected]', | ||
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", | ||
|