forked from BlockIo/block_io-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 687 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='block-io',
version='1.1.9',
description='The easiest way to integrate Bitcoin, Dogecoin and Litecoin in your applications. Sign up at Block.io for your API key.',
url='https://github.com/BlockIo/block_io-python',
author='Atif Nazir',
author_email='a@block.io',
license='MIT',
packages=['block_io'],
install_requires=[
'requests>=2.20.0',
'pycryptodome==3.6.6',
'ecdsa==0.13',
'six>=1.8.0',
'base58>=1.0.0'
],
zip_safe=False)
# for packages not on pypi
# dependency_links=['http://github.com/user/repo/tarball/master#egg=package-1.0']