-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
34 lines (30 loc) · 1.12 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
# -*- coding:utf-8 -*-
"""
@author: fsksf
@since: 2022/1/12 16:37
"""
from setuptools import Extension, setup, find_packages
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='vnpy_qmt', # Required
version='0.3.3', # Required
description='vnpy qmt gateway', # Required
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
url="https://github.com/fsksf/vnpy_qmt",
author='fsksf', # Optional
author_email='kangyuqiang123@qq.com',
classifiers=[ # Optional
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords='vnpy gateway qmt', # Optional
packages=find_packages()
)