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 6c47763 commit 28da8a8
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@

from distutils.core import setup

# 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()

setup(
name = 'elara',
packages = ['elara'],
version = '0.1.0',
version = '0.1.2',
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', #
author_email = '[email protected]',
url = 'https://github.com/saurabh0719/elara',
Expand Down

0 comments on commit 28da8a8

Please sign in to comment.