-
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.
- Loading branch information
1 parent
6c47763
commit 28da8a8
Showing
1 changed file
with
10 additions
and
1 deletion.
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
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', | ||
|