-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
47 lines (44 loc) · 1.17 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import setuptools
with open("README.md", "r",encoding="utf-8") as fh:
long_description = fh.read()
VERSION = '5.4.1001'
DESCRIPTION = 'Up-to-date, most-complete, well-organized, well-documented, easy-to-use OKX Exchange Rest and Websocket API SDK for Python'
setuptools.setup(
name="okx-sdk",
version=VERSION,
author="Burak Öner",
author_email="[email protected]",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/burakoner/okx-sdk",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"importlib-metadata",
"httpx[http2]",
"keyring",
"requests",
"Twisted",
"pyOpenSSL"
],
keywords=[
'okx',
'crypto',
'exchange',
'api',
'sdk',
'stream',
'websocket',
'ws',
'python',
'bitcoin',
'btc',
'spot',
'futures',
'trade'],
)