Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabh0719 committed May 11, 2021
1 parent 28da8a8 commit ce8b436
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 12 deletions.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[metadata]
description-file = README.md
long_description = file: README.md
long_description_content_type = text/markdown
42 changes: 31 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,43 @@
"""
Elara
--------
Elara DB is an easy to use key-value storage for your python projects!
from distutils.core import setup
Installation :
```````````````````
::
$ pip install elara
Key Features :
```````````````
* Offers two modes of execution - normal and secure - exe_secure() generates a key file and encrypts the key-value storage for additional security.
* Perform various operations on strings, lists and dictionaries.
* Choose between manual commits after performing operations in-memory or automatically commit every change into the storage.
* Includes methods to export certain keys or the entire storage.
* Based on python's in-built json module for easy manipulation and access.
* Takes inspiration from pickleDB and Redis.
Links
`````
* `Documentation <https://github.com/saurabh0719/elara#readme>`_
* `pypi <https://pypi.org/project/elara/>`_
* `Github repository <https://github.com/saurabh0719/elara>`_
"""

# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
from distutils.core import setup

setup(
name = 'elara',
packages = ['elara'],
version = '0.1.2',
version = '0.1.3',
license='three-clause BSD',
description = 'Elara DB is an easy to use key-value storage for your python projects!',
long_description = long_description,
long_description_content_type = 'text/markdown',
author = 'Saurabh Pujari', #
long_description = __doc__,
author = 'Saurabh Pujari',
author_email = 'saurabhpuj99@gmail.com',
url = 'https://github.com/saurabh0719/elara',
url = 'https://github.com/saurabh0719/elara',
keywords = [
'database',
'key-value',
Expand Down

0 comments on commit ce8b436

Please sign in to comment.