-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
35 lines (29 loc) · 1.18 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
# 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.
import sys
from distutils.core import setup
from setuptools import find_packages
BTCPYVERSION = '0.6.5'
requirements = ['ecdsa==0.13']
if sys.version_info.minor < 4:
requirements.append('enum34')
setup(name='chainside-btcpy',
version=BTCPYVERSION,
packages=find_packages(),
install_requires=requirements,
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/{}.tar.gz'.format(BTCPYVERSION),
python_requires='>=3',
keywords=['bitcoin', 'blockchain', 'bitcoind', 'chainside'])