forked from yutiansut/QAPUBSUB
-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
59 lines (52 loc) · 1.29 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
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_pubsub"
"""
名字,一般放你包的名字即可
"""
PACKAGES = ["QAPUBSUB"]
"""
包含的包,可以多个,这是一个列表
"""
DESCRIPTION = "QUANTAXIS PUBSUB:QUANTAXIS PUB/SUB MODEL"
KEYWORDS = ["quantaxis", "quant", "finance", "Backtest", 'Framework']
AUTHOR_EMAIL = "yutiansut@qq.com"
AUTHOR = 'yutiansut'
URL = "https://github.com/yutiansut/QAPUBSUB"
LICENSE = "MIT"
setup(
name=NAME,
version='1.10',
description=DESCRIPTION,
long_description='publisher and subscriber',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
install_requires=['pika==1.0.0b1', 'quantaxis>=1.4.8'],
entry_points={
'console_scripts': [
'qaps_pub = QAPUBSUB.__init__:debug_pub',
'qaps_sub = QAPUBSUB.__init__:debug_sub'
]
},
keywords=KEYWORDS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=PACKAGES,
include_package_data=True,
zip_safe=True
)