forked from oskyk/btcpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1.07 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
# Copyright (C) 2017 chainside srl
#
# This file is part of the btcpy package.
#
# It is subject to the license terms in the LICENSE.md file found in the top-level
# directory of this distribution.
#
# No part of btcpy, including this file, may be copied, modified,
# propagated, or distributed except according to the terms contained in the
# LICENSE.md file.
from distutils.core import setup
from setuptools import find_packages
setup(name='chainside-btcpy-multi',
version='0.2.80',
packages=find_packages(),
install_requires=['ecdsa>=0.15.0,<0.16.0'],
extras_require={'develop': ['python-bitcoinlib==0.7.0']},
description='A Python3 SegWit-compliant library which provides tools to handle Bitcoin data structures in a simple fashion.',
author='chainside srl',
author_email='[email protected]',
url='https://github.com/chainside/btcpy',
download_url='https://github.com/chainside/btcpy/archive/0.2.7.tar.gz',
python_requires='>=3',
keywords=['bitcoin', 'blockchain', 'bitcoind', 'chainside'],
zip_safe=False)