-
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.
Merge pull request #12 from DarthUdp/main
- Storage format switched to binary - checksum added - File format versioning & feature flags for encryption
- Loading branch information
Showing
7 changed files
with
147 additions
and
74 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
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
cryptography==3.4.7 | ||
msgpack>=1.0.0 |
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 |
---|---|---|
@@ -1,39 +1,36 @@ | ||
from distutils.core import setup | ||
|
||
with open('README.rst') as f: | ||
with open("README.rst") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name = 'elara', | ||
packages = ['elara'], | ||
version = '0.3.0', | ||
license='three-clause BSD', | ||
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 for JSON-serializable data. Includes various methods to manipulate data structures in-memory, secure database files and export data.', | ||
long_description = long_description, | ||
author = 'Saurabh Pujari', | ||
author_email = 'saurabhpuj99@gmail.com', | ||
url = 'https://github.com/saurabh0719/elara', | ||
keywords = [ | ||
'database', | ||
'key-value', | ||
'storage', | ||
'file storage', | ||
'json storage', | ||
'json database', | ||
'key-value database' , | ||
'nosql', | ||
'nosql database' | ||
'cache', | ||
'file cache' | ||
], | ||
install_requires=[ | ||
'cryptography' | ||
name="elara", | ||
packages=["elara"], | ||
version="0.3.0", | ||
license="three-clause BSD", | ||
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 for JSON-serializable data. Includes various methods to manipulate data structures in-memory, secure database files and export data.", | ||
long_description=long_description, | ||
author="Saurabh Pujari", | ||
author_email="saurabhpuj99@gmail.com", | ||
url="https://github.com/saurabh0719/elara", | ||
keywords=[ | ||
"database", | ||
"key-value", | ||
"storage", | ||
"file storage", | ||
"json storage", | ||
"json database", | ||
"key-value database", | ||
"nosql", | ||
"nosql database" "cache", | ||
"file cache", | ||
], | ||
install_requires=["cryptography", "msgpack"], | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Topic :: Database", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python", | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Topic :: Database', | ||
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python' | ||
], | ||
) | ||
) |
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