From ce8b436f1739d0a9999dfbb83a5e75d6fcbe249b Mon Sep 17 00:00:00 2001 From: Saurabh Pujari Date: Tue, 11 May 2021 20:10:49 +0530 Subject: [PATCH] updated setup.py --- setup.cfg | 3 ++- setup.py | 42 +++++++++++++++++++++++++++++++----------- 2 files changed, 33 insertions(+), 12 deletions(-) diff --git a/setup.cfg b/setup.cfg index 224a779..1155c2a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,3 @@ [metadata] -description-file = README.md \ No newline at end of file +long_description = file: README.md +long_description_content_type = text/markdown \ No newline at end of file diff --git a/setup.py b/setup.py index 9a7d9f1..302dd52 100644 --- a/setup.py +++ b/setup.py @@ -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 `_ +* `pypi `_ +* `Github repository `_ + +""" -# 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',