-
Notifications
You must be signed in to change notification settings - Fork 85
/
setup.py
executable file
·60 lines (53 loc) · 1.33 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
48
49
50
51
52
53
54
55
56
57
58
59
60
import codecs
import io
import os
import re
import sys
import webbrowser
import platform
try:
from setuptools import setup
except:
from distutils.core import setup
NAME = "quantaxis_webserver"
"""
名字,一般放你包的名字即可
"""
PACKAGES = ["QAWebServer"]
"""
包含的包,可以多个,这是一个列表
"""
DESCRIPTION = "QUANTAXIS WEBSERVER: WEBSERVER FOR QUANTAXIS"
KEYWORDS = ["quantaxis", "quant", "finance", "Backtest", 'Framework']
AUTHOR_EMAIL = "[email protected]"
AUTHOR = 'yutiansut'
URL = "https://github.com/yutiansut/quantaxis_webserver"
LICENSE = "MIT"
setup(
name=NAME,
version='2.0.0',
description=DESCRIPTION,
long_description='quantaxis webserver',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
install_requires=['tornado>=6.1', 'qaenv', 'apscheduler',
'quantaxis>=1.7.0'],
entry_points={
'console_scripts': [
'quantaxis_webserver=QAWebServer.QA_Web:main'
]
},
# install_requires=requirements,
keywords=KEYWORDS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=PACKAGES,
include_package_data=True,
zip_safe=True
)