mirror of
https://github.com/blockchain-etl/ethereum-etl.git
synced 2026-01-10 14:27:54 -05:00
78 lines
2.5 KiB
Python
78 lines
2.5 KiB
Python
import os
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
|
|
long_description = read('README.md') if os.path.isfile("README.md") else ""
|
|
|
|
setup(
|
|
name='ethereum-etl',
|
|
version='2.4.2',
|
|
author='Evgeny Medvedev',
|
|
author_email='evge.medvedev@gmail.com',
|
|
description='Tools for exporting Ethereum blockchain data to CSV or JSON',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/blockchain-etl/ethereum-etl',
|
|
packages=find_packages(exclude=['schemas', 'tests']),
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: Python :: 3.9'
|
|
],
|
|
keywords='ethereum',
|
|
python_requires='>=3.7.2,<4',
|
|
install_requires=[
|
|
'web3>=5.29,<6',
|
|
'eth-utils==1.10',
|
|
'eth-abi>=2.2.0,<3.0.0',
|
|
# TODO: This has to be removed when "ModuleNotFoundError: No module named 'eth_utils.toolz'" is fixed at eth-abi
|
|
'python-dateutil>=2.8.0,<3',
|
|
'click>=8.0.4,<9',
|
|
'ethereum-dasm==0.1.4',
|
|
'urllib3<2',
|
|
'base58',
|
|
'requests'
|
|
],
|
|
extras_require={
|
|
'streaming': [
|
|
'timeout-decorator==0.4.1',
|
|
'google-cloud-pubsub==2.13.0',
|
|
'google-cloud-storage==1.33.0',
|
|
'kafka-python==2.0.2',
|
|
'sqlalchemy==1.4',
|
|
'pg8000==1.16.6',
|
|
# This library is a dependency for google-cloud-pubsub, starting from 0.3.22 it requires Rust,
|
|
# that's why we lock the version here
|
|
'libcst==0.3.21',
|
|
# Later versions break the build in Travis CI for Python 3.7.2
|
|
'grpcio==1.46.3'
|
|
],
|
|
'streaming-kinesis': [
|
|
'boto3==1.24.11',
|
|
'botocore==1.27.11',
|
|
],
|
|
'dev': [
|
|
'pytest~=4.3.0'
|
|
]
|
|
},
|
|
entry_points={
|
|
'console_scripts': [
|
|
'ethereumetl=ethereumetl.cli:cli',
|
|
],
|
|
},
|
|
project_urls={
|
|
'Bug Reports': 'https://github.com/blockchain-etl/ethereum-etl/issues',
|
|
'Chat': 'https://gitter.im/ethereum-etl/Lobby',
|
|
'Source': 'https://github.com/blockchain-etl/ethereum-etl',
|
|
},
|
|
)
|