Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
37 lines (34 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (34 loc) · 1.27 KB
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
fromsetuptoolsimportfind_packages, setup
frompathlibimportPath
VERSION='0.5.6'
# 读取 README 作为长描述
this_directory=Path(__file__).parent
long_description= (this_directory/"README.md").read_text(encoding='utf-8')
setup(
name='gate-ws',
version=VERSION,
packages=find_packages(),
url='https://github.com/gate/gatews',
install_requires=['websockets>=8.1'],
license='MIT License',
author='gateio',
keywords=["Gate WebSocket V4", "Gate", "cryptocurrency", "websocket"],
author_email='dev@gate.com',
description='Gate WebSocket V4 Python SDK',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)