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) · 648 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 648 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.7',
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',
'pycrypto',
'ecdsa',
'six',
'base58'
],
zip_safe=False)
# for packages not on pypi
# dependency_links=['http://github.com/user/repo/tarball/master#egg=package-1.0']