forked from alecalve/python-bitcoin-blockchain-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 771 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
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',
description='Bitcoin blockchain parser',
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.5.0',
]
)