-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
47 lines (41 loc) · 1.5 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
import os
from setuptools import setup, find_packages
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='blockchain-etl-common',
version='1.7.1',
author='Evgeny Medvedev',
author_email='[email protected]',
description='Common utils for Blockchain ETL',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/blockchain-etl/blockchain-etl-common',
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.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
keywords='blockchain ethereum bitcoin etl',
python_requires='>=3.5.3,<4',
install_requires=[
],
extras_require={
'streaming': [
'timeout-decorator==0.4.1',
'google-cloud-pubsub==2.1.0',
'google-cloud-storage==1.33.0',
]
},
project_urls={
'Bug Reports': 'https://github.com/blockchain-etl/blockchain-etl-common/issues',
'Chat': 'https://gitter.im/ethereum-etl/Lobby',
'Source': 'https://github.com/blockchain-etl/blockchain-etl-common',
},
)