forked from fasiondog/hikyuu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsub_setup.py
149 lines (135 loc) · 4.13 KB
/
sub_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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import platform
from setuptools import setup, find_packages
hku_version = ''
with open('xmake.lua', 'r', encoding='utf-8') as f:
for line in f:
if len(line) > 15 and line[:11] == 'set_version':
pre_pos = line.find('"') + 1
end_pos = line.find('"', pre_pos)
hku_version = line[pre_pos:end_pos]
break
if not hku_version:
print("无法在 xmake.lua 中找到 set_version 语句,获取版本号失败!")
exit(0)
print('current hikyuu version:', hku_version)
py_version = platform.python_version_tuple()
py_version = int(py_version[0]) * 10 + int(py_version[1])
hku_name = "hikyuu"
#hku_version = "1.0.9"
hku_author = "fasiondog"
hku_author_email = "fasiondog@sina.com"
hku_license = "MIT"
hku_keywords = [
"quant", "trade", "System Trading", "backtester", "量化", "程序化交易", "量化交易",
"系统交易"
]
hku_platforms = "Independant"
hku_url = "http://hikyuu.org/"
hku_description = "Hikyuu Quant Framework for System Trading Analysis and backtester"
with open("README.rst", encoding='utf-8') as f:
hku_long_description = f.read()
hku_data_files = []
packages = [
'hikyuu',
'hikyuu/admin',
'hikyuu/admin/language',
'hikyuu/config',
'hikyuu/config/block',
'hikyuu/cpp',
'hikyuu/data',
'hikyuu/data/mysql_upgrade',
'hikyuu/data/sqlite_upgrade',
'hikyuu/data/sqlite_mem_sql',
'hikyuu/data_driver',
'hikyuu/examples',
'hikyuu/flat',
'hikyuu/fetcher',
'hikyuu/fetcher/proxy',
'hikyuu/fetcher/stock',
'hikyuu/gui',
'hikyuu/gui/data',
'hikyuu/indicator',
'hikyuu/draw',
'hikyuu/draw/drawplot',
'hikyuu/shell',
'hikyuu/strategy',
'hikyuu/strategy/demo',
#'hikyuu/test',
'hikyuu/tools',
'hikyuu/trade_manage',
'hikyuu/trade_sys',
'hikyuu/util',
]
setup(
name=hku_name,
version=hku_version,
description=hku_description,
long_description=hku_long_description,
author=hku_author,
author_email=hku_author_email,
license=hku_license,
keywords=hku_keywords,
platforms=hku_platforms,
url=hku_url,
packages=packages, #find_packages(),
zip_safe=False,
include_package_data=True,
package_data={
'': [
'*.rst', '*.pyd', '*.ini', '*.sql', '*.properties', '*.xml',
'LICENSE.txt', '*.dll', '*.exe', '*.ico', '*.so', '*.dylib',
'*.qm', 'libboost_serialization*',
'libboost_python{}*'.format(py_version)
],
},
data_files=hku_data_files,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Mathematics',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
entry_points={
'gui_scripts': [
'HikyuuTDX=hikyuu.gui.HikyuuTDX:start',
],
'console_scripts': [
'importdata=hikyuu.gui.importdata:main',
]
},
install_requires=[
'matplotlib',
'pandas>=0.17.1',
#'tushare>=0.8.2',
'pytdx',
'PyQt5',
'tables',
'bokeh',
'gitpython',
'SQLAlchemy',
'mysql-connector-python',
'pyperclip',
'requests',
'qdarkstyle',
'flatbuffers',
'pynng'
],
)