add setup.py
This commit is contained in:
parent
3df5503ca6
commit
ee870fe9c5
|
|
@ -29,5 +29,4 @@ build/
|
|||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
setup.py
|
||||
id_rsa*
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
import setuptools
|
||||
import okx
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="python-okx",
|
||||
version=okx.__version__,
|
||||
author="okxv5api",
|
||||
author_email="api@okg.com",
|
||||
description="Python SDK for OKX",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://okx.com/docs-v5/",
|
||||
packages=setuptools.find_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
install_requires=[
|
||||
"importlib-metadata",
|
||||
"keyring",
|
||||
"requests",
|
||||
"Twisted",
|
||||
"pyOpenSSL"
|
||||
]
|
||||
)
|
||||
Loading…
Reference in New Issue