forked from fireblocks/fireblocks-sdk-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (25 loc) · 808 Bytes
/
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
from distutils.core import setup
setup(
name = 'fireblocks_sdk',
packages = ['fireblocks_sdk'],
version = '1.18.4',
license='MIT',
description = 'Fireblocks python SDK',
long_description="""Fireblocks python SDK""",
long_description_content_type='text/markdown',
url = 'https://github.com/fireblocks/fireblocks-sdk-py',
download_url = 'https://github.com/fireblocks/fireblocks-sdk-py/archive/v1.18.4.tar.gz',
keywords = ['Fireblocks', 'SDK'],
install_requires=[
'PyJWT>=2.3.0',
'cryptography>=2.7',
'requests>=2.22.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)