forked from saurabh0719/elara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from distutils.core import setup
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="[email protected]",
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",
],
)