forked from Ming119/bingX-connector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 850 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
30
31
32
33
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
NAME = "bingX-connector"
VERSION = "0.0.5"
AUTHOR = "Ming119"
URL = "https://github.com/Ming119/bingX-connector-python"
setuptools.setup(
name=NAME,
version=VERSION,
author=AUTHOR,
url=URL,
description="A simple connector to BingX Public API",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=["test", "docs"]),
package_data={
"perpetual": ["*", "*/*"],
},
license='GPLv3',
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
)