-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
58 lines (51 loc) · 1.27 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
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 = "QASchedule"
"""
名字,一般放你包的名字即可
"""
PACKAGES = ["QASchedule"]
"""
包含的包,可以多个,这是一个列表
"""
DESCRIPTION = "QUANTAXIS REALTIME: QUANTAXIS REALTIME RESOLUTION"
KEYWORDS = ["quantaxis", "quant", "finance", "Backtest", 'Framework']
AUTHOR_EMAIL = "[email protected]"
AUTHOR = 'yutiansut'
URL = "https://github.com/yutiansut/qaschedule"
LICENSE = "MIT"
setup(
name=NAME,
version='1.0',
description=DESCRIPTION,
long_description='signal and schedule for events',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
install_requires=['pika', 'quantaxis>=1.1.10.dev2'],
# entry_points={
# 'console_scripts': [
# 'qaunicorn_newwork=quantaxis_unicornrs.new_work:new_work'
# ]
# },
keywords=KEYWORDS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=PACKAGES,
include_package_data=True,
zip_safe=True
)