-
Notifications
You must be signed in to change notification settings - Fork 22
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
0ce3a74
commit 1cda5ee
Showing
1 changed file
with
4 additions
and
4 deletions.
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 |
---|---|---|
|
@@ -8,22 +8,23 @@ | |
|
||
setup( | ||
name='ether_sql', | ||
version='0.1.0', | ||
version='0.1.3', | ||
description="""A python library to push ethereum blockchain data into an sql database.""", | ||
long_description_markdown_filename='README.md', | ||
author='Ankit Chiplunkar', | ||
author_email='[email protected]', | ||
url='https://github.com/analyseether/ether_sql', | ||
include_package_data=True, | ||
install_requires=[ | ||
"web3", | ||
"web3==4.4.1", | ||
"sqlalchemy==1.2.4", | ||
"alembic==0.9.9", | ||
"psycopg2-binary==2.7.4", | ||
"Click==6.7", | ||
"Celery==4.1.1", | ||
], | ||
setup_requires=['setuptools-markdown'], | ||
python_requires='>=3.5, <4', | ||
python_requires='>=3.6, <4', | ||
extras_require={ | ||
'tester': [ | ||
"pytest==3.0.0", | ||
|
@@ -47,7 +48,6 @@ | |
'Intended Audience :: Developers', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
) |