-
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.
Updated version 1.1.1 (BST Implemented)
- Loading branch information
1 parent
9f8ae66
commit 46e49d7
Showing
3 changed files
with
12 additions
and
5 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
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
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 |
---|---|---|
|
@@ -6,14 +6,14 @@ | |
|
||
setup( | ||
name = 'pydatastructs', | ||
version = '1.1.0', | ||
version = '1.1.1', | ||
author = 'Yoshio Hasegawa', | ||
author_email = '[email protected]', | ||
description = 'A package that contains common data structures', | ||
long_description = LONG_DESCRIPTION, | ||
long_description_content_type = 'text/markdown', | ||
url = 'https://github.com/yoshiohasegawa/python-data-structures', | ||
download_url = 'https://github.com/yoshiohasegawa/python-data-structures/archive/refs/tags/v1.1.0.tar.gz', | ||
download_url = 'https://github.com/yoshiohasegawa/python-data-structures/archive/refs/tags/v1.1.1.tar.gz', | ||
license='MIT', | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
|
@@ -30,5 +30,5 @@ | |
install_requires=[ | ||
'typing' | ||
], | ||
keywords = ['Python', 'Data Structures', 'Collections', 'Stack', 'Queue', 'Tree', 'Binary Tree', 'Heap', 'Linked List'], | ||
keywords = ['Python', 'Data Structures', 'Collections', 'Stack', 'Queue', 'Tree', 'Binary Search Tree', 'Heap', 'Linked List'], | ||
) |