-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 793 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='block-io',
version='2.0.6',
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'],
python_requires='>=3.6, <4',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'requests>=2.25.0,<3.0',
'pycryptodome>=3.9.9,<4.0',
'base58>=2.1,<2.2',
'bitcoin-utils-fork-minimal==0.4.11.6'
],
zip_safe=False)