-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (29 loc) · 930 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
26
27
28
29
from distutils.core import setup
from setuptools import find_packages
with open("README.rst", "r") as f:
long_description = f.read()
setup(name='safeheron_api_sdk_python',
version='1.1.14',
description='Python for Safeheron API',
long_description=long_description,
author='safeheron',
author_email='[email protected]',
url='https://github.com/Safeheron/safeheron-api-sdk-python',
install_requires=[
'pycryptodomex',
'requests',
'cryptography'
],
license='MIT License',
packages=[
'safeheron_api_sdk_python',
'safeheron_api_sdk_python.api',
'safeheron_api_sdk_python.cosigner',
'safeheron_api_sdk_python.webhook'
],
platforms=["all"],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
)