-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (25 loc) · 821 Bytes
/
setup.py
File metadata and controls
25 lines (25 loc) · 821 Bytes
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 = '2.17.0',
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/v2.17.0.tar.gz',
keywords = ['Fireblocks', 'SDK'],
install_requires=[
'PyJWT>=2.8.0',
'cryptography>=2.7',
'requests>=2.22.0',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)