-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
53 lines (51 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
find_packages,
setup,
)
setup(
name='ether_sql',
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='ankit@analyseether.com',
url='https://github.com/analyseether/ether_sql',
include_package_data=True,
install_requires=[
"web3==4.4.1",
"sqlalchemy==1.3.17",
"alembic==0.9.9",
"psycopg2-binary==2.7.4",
"Click==6.7",
"Celery==4.1.1",
],
setup_requires=['setuptools-markdown'],
python_requires='>=3.6, <4',
extras_require={
'tester': [
"pytest==3.0.0",
"pytest-cov==2.2.1",
],
'linter': [
"flake8==3.4.1",
"isort>=4.2.15,<5",
],
},
entry_points='''
[console_scripts]
ether_sql=ether_sql.cli:cli
''',
py_modules=['ether_sql'],
zip_safe=False,
keywords='ethereum',
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)