-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
108dc64
commit 81a3b49
Showing
3 changed files
with
54 additions
and
47 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,9 +6,9 @@ | |
setup( | ||
name = 'elara', | ||
packages = ['elara'], | ||
version = '0.2.0', | ||
version = '0.2.1', | ||
license='three-clause BSD', | ||
description = 'Elara DB is an easy to use, key-value database written for python that can also be used as a fast in-memory cache. Includes various methods to manipulate data structures in-memory, secure database files and export data.', | ||
description = 'Elara DB is an easy to use, lightweight NoSQL database written for python that can also be used as a fast in-memory cache. Includes various methods to manipulate data structures in-memory, secure database files and export data.', | ||
long_description = long_description, | ||
author = 'Saurabh Pujari', | ||
author_email = '[email protected]', | ||
|
@@ -19,9 +19,13 @@ | |
'storage', | ||
'file storage', | ||
'json storage', | ||
'json database' | ||
'key-value database' | ||
], # Keywords that define your package best | ||
'json database', | ||
'key-value database' , | ||
'nosql', | ||
'nosql database' | ||
'cache', | ||
'file cache' | ||
], | ||
install_requires=[ | ||
'cryptography' | ||
], | ||
|