-
Notifications
You must be signed in to change notification settings - Fork 123
/
setup.py
57 lines (51 loc) · 1.65 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
54
55
56
57
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='bitcoin-etl',
version='1.5.2',
author='Evgeny Medvedev',
author_email='[email protected]',
description='Tools for exporting Bitcoin blockchain data to JSON',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/blockchain-etl/bitcoin-etl',
packages=find_packages(exclude=['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='bitcoin',
python_requires='>=3.5.0,<4',
install_requires=[
'requests~=2.20',
'python-dateutil~=2.7',
'click~=7.0'
],
extras_require={
'streaming': [
'timeout-decorator==0.4.1',
'google-cloud-pubsub==0.39.1'
],
'dev': [
'pytest~=4.3.0'
],
},
entry_points={
'console_scripts': [
'bitcoinetl=bitcoinetl.cli:cli',
],
},
project_urls={
'Bug Reports': 'https://github.com/blockchain-etl/bitcoin-etl/issues',
'Chat': 'https://gitter.im/ethereum-etl/Lobby',
'Source': 'https://github.com/blockchain-etl/bitcoin-etl',
},
)