-
Notifications
You must be signed in to change notification settings - Fork 193
/
setup.py
28 lines (26 loc) · 924 Bytes
/
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
from setuptools import setup, find_packages
from blockchain_parser import __version__
setup(
name='blockchain-parser',
version=__version__,
packages=find_packages(),
url='https://github.com/alecalve/python-bitcoin-blockchain-parser',
author='Antoine Le Calvez',
author_email='antoine@p2sh.info',
description='Bitcoin blockchain parser',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
test_suite='blockchain_parser.tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Topic :: Software Development :: Libraries',
],
install_requires=[
'python-bitcoinlib==0.11.0',
'plyvel==1.5.1',
'ripemd-hash==1.0.1'
]
)