forked from CoboGlobal/cobo-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (17 loc) · 653 Bytes
/
setup.py
File metadata and controls
17 lines (17 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
setup(
name="cobo_custody",
version="0.44",
author="Cobo",
author_email="support@cobo.com",
description="Cobo Custody restful api",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="Cobo Copyright Reserved",
python_requires=">=3.7",
url="https://github.com/CoboGlobal/cobo-python-api",
packages=['cobo_custody', 'cobo_custody.model','cobo_custody.signer', 'cobo_custody.client', 'cobo_custody.error', 'cobo_custody.config'],
include_package_data=True,
install_requires=["ecdsa==0.17.0", "requests"]
# zip_safe=False,
)