forked from Kucoin/kucoin-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 718 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python
# -*- coding:utf-8 -*-
from setuptools import setup
setup(
name='kucoin-python',
version='v1.0.26',
packages=['kucoin', 'kucoin/base_request', 'kucoin/margin', 'kucoin/market', 'kucoin/trade', 'kucoin/user','kucoin/lending','kucoin/earn',
'kucoin/websocket', 'kucoin/ws_token'],
license="MIT",
author='Arthur',
author_email="arthur.zhang@kucoin.com",
url='https://github.com/Kucoin/kucoin-python-sdk',
description="kucoin-api-sdk",
install_requires=['requests', 'websockets'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)