forked from vnpy/vnpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
380 lines (344 loc) · 12.1 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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
"""
vn.py - By Traders, For Traders.
The vn.py project is an open-source quantitative trading framework
that is developed by traders, for traders.
The project is mainly written in Python and uses C++ for low-layer
and performance sensitive infrastructure.
Using the vn.py project, institutional investors and professional
traders, such as hedge funds, prop trading firms and investment banks,
can easily develop complex trading strategies with the Event Engine
Strategy Module, and automatically route their orders to the most
desired destinations, including equity, commodity, forex and many
other financial markets.
"""
import ast
import os
import platform
import re
import sys
from setuptools import Extension, find_packages, setup
def gather_autocxxpy_generated_files(root: str):
fs = [os.path.join(root, "module.cpp")]
for root, dirs, filenames in os.walk(root):
for filename in filenames:
filebase, ext = os.path.splitext(filename)
if ext == ".cpp" and filebase.startswith("generated_functions_"):
path = os.path.join(root, filename)
fs.append(path)
return fs
def check_extension_build_flag(ext_modules, key: str, module: Extension):
value = os.environ.get(key, None)
if value is not None:
if value == '1':
ext_modules = list(set(ext_modules) | {module})
elif value == '0':
ext_modules = list(set(ext_modules) - {module})
else:
raise ValueError(
f"Flag {key} should be '0' or '1', but {repr(value)} got.")
return ext_modules
def is_psycopg2_exists():
try:
import psycopg2 # noqa
return True
except ImportError:
return False
def get_install_requires():
install_requires = [
"PyQt5",
"qdarkstyle",
"requests",
"websocket-client",
"peewee",
"numpy",
"pandas",
"matplotlib",
"seaborn",
"rqdatac",
"ta-lib",
"deap",
"pyzmq",
"QScintilla"
]
if not is_psycopg2_exists():
install_requires.append("psycopg2-binary")
if sys.version_info.minor < 7:
install_requires.append("dataclasses")
return install_requires
def get_version_string():
global version
with open("vnpy/__init__.py", "rb") as f:
version_line = re.search(
r"__version__\s+=\s+(.*)", f.read().decode("utf-8")
).group(1)
return str(ast.literal_eval(version_line))
def get_ext_modules():
if platform.uname().system == "Windows":
compiler_flags = [
"/MP", "/std:c++17", # standard
"/O2", "/Ob2", "/Oi", "/Ot", "/Oy", "/GL", # Optimization
"/bigobj", # Better compatibility
"/wd4819", # 936 code page
"/D_CRT_SECURE_NO_WARNINGS",
# suppress warning of unsafe functions like fopen, strcpy, etc
]
extra_link_args = []
runtime_library_dirs = None
else:
compiler_flags = [
"-std=c++17", # standard
"-O3", # Optimization
"-Wno-delete-incomplete", "-Wno-sign-compare",
]
extra_link_args = ["-lstdc++"]
runtime_library_dirs = ["$ORIGIN"]
vnctpmd = Extension(
"vnpy.api.ctp.vnctpmd",
[
"vnpy/api/ctp/vnctp/vnctpmd/vnctpmd.cpp",
],
include_dirs=["vnpy/api/ctp/include",
"vnpy/api/ctp/vnctp"],
define_macros=[],
undef_macros=[],
library_dirs=["vnpy/api/ctp/libs", "vnpy/api/ctp"],
libraries=["thostmduserapi_se", "thosttraderapi_se"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
depends=[],
language="cpp",
)
vnctptd = Extension(
"vnpy.api.ctp.vnctptd",
[
"vnpy/api/ctp/vnctp/vnctptd/vnctptd.cpp",
],
include_dirs=["vnpy/api/ctp/include",
"vnpy/api/ctp/vnctp"],
define_macros=[],
undef_macros=[],
library_dirs=["vnpy/api/ctp/libs", "vnpy/api/ctp"],
libraries=["thostmduserapi_se", "thosttraderapi_se"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
depends=[],
language="cpp",
)
vnxtpmd = Extension(
"vnpy.api.xtp.vnxtpmd",
[
"vnpy/api/xtp/vnxtp/vnxtpmd/vnxtpmd.cpp",
],
include_dirs=["vnpy/api/xtp/include",
"vnpy/api/xtp/vnxtp"],
define_macros=[],
undef_macros=[],
library_dirs=["vnpy/api/xtp/libs", "vnpy/api/xtp"],
libraries=["xtptraderapi", "xtpquoteapi"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
depends=[],
language="cpp",
)
vnxtptd = Extension(
"vnpy.api.xtp.vnxtptd",
[
"vnpy/api/xtp/vnxtp/vnxtptd/vnxtptd.cpp",
],
include_dirs=["vnpy/api/xtp/include",
"vnpy/api/xtp/vnxtp"],
define_macros=[],
undef_macros=[],
library_dirs=["vnpy/api/xtp/libs", "vnpy/api/xtp"],
libraries=["xtptraderapi", "xtpquoteapi"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
depends=[],
language="cpp",
)
vnksgoldmd = Extension(
"vnpy.api.ksgold.vnksgoldmd",
[
"vnpy/api/ksgold/vnksgold/vnksgoldmd/vnksgoldmd.cpp",
],
include_dirs=["vnpy/api/ksgold/include",
"vnpy/api/ksgold/vnksgold"],
define_macros=[],
undef_macros=[],
library_dirs=["vnpy/api/ksgold/libs", "vnpy/api/ksgold"],
libraries=["ksgoldquotmarketdataapi", "ksgoldtraderapi"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
depends=[],
language="cpp",
)
vnksgoldtd = Extension(
"vnpy.api.ksgold.vnksgoldtd",
[
"vnpy/api/ksgold/vnksgold/vnksgoldtd/vnksgoldtd.cpp",
],
include_dirs=["vnpy/api/ksgold/include",
"vnpy/api/ksgold/vnksgold"],
define_macros=[],
undef_macros=[],
library_dirs=["vnpy/api/ksgold/libs", "vnpy/api/ksgold"],
libraries=["ksgoldquotmarketdataapi", "ksgoldtraderapi"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
depends=[],
language="cpp",
)
vnsgitmd = Extension(
"vnpy.api.sgit.vnsgitmd",
[
"vnpy/api/sgit/vnsgit/vnsgitmd/vnsgitmd.cpp",
],
include_dirs=["vnpy/api/sgit/include",
"vnpy/api/sgit/vnsgit"],
define_macros=[],
undef_macros=[],
library_dirs=["vnpy/api/sgit/libs", "vnpy/api/sgit"],
libraries=["crypto", "sgitquotapi", "sgittradeapi", "ssl"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
depends=[],
language="cpp",
)
vnsgittd = Extension(
"vnpy.api.sgit.vnsgittd",
[
"vnpy/api/sgit/vnsgit/vnsgittd/vnsgittd.cpp",
],
include_dirs=["vnpy/api/sgit/include",
"vnpy/api/sgit/vnsgit"],
define_macros=[],
undef_macros=[],
library_dirs=["vnpy/api/sgit/libs", "vnpy/api/sgit"],
libraries=["crypto", "sgitquotapi", "sgittradeapi", "ssl"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
depends=[],
language="cpp",
)
vnnhmd = Extension(
"vnpy.api.nh.vnnhmd",
[
"vnpy/api/nh/vnnh/vnnhmd/vnnhmd.cpp",
],
include_dirs=["vnpy/api/nh/include", "vnpy/api/nh/vnnh"],
library_dirs=["vnpy/api/nh/libs", "vnpy/api/nh"],
libraries=["nhmdapi"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
language="cpp",
)
vnnhfutures = Extension(
"vnpy.api.nh.vnnhfutures",
[
"vnpy/api/nh/vnnh/vnnhfutures/vnnhfutures.cpp",
],
include_dirs=["vnpy/api/nh/include", "vnpy/api/nh/vnnh"],
library_dirs=["vnpy/api/nh/libs", "vnpy/api/nh"],
libraries=["nhtd2traderapi"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
language="cpp",
)
vnnhstock = Extension(
"vnpy.api.nh.vnnhstock",
[
"vnpy/api/nh/vnnh/vnnhstock/vnnhstock.cpp",
],
include_dirs=["vnpy/api/nh/include", "vnpy/api/nh/vnnh"],
library_dirs=["vnpy/api/nh/libs", "vnpy/api/nh"],
libraries=["nhtdstockapi"],
extra_compile_args=compiler_flags,
extra_link_args=extra_link_args,
runtime_library_dirs=runtime_library_dirs,
language="cpp",
)
if platform.system() == "Windows":
# use pre-built pyd for windows ( support python 3.7 only )
ext_modules = []
elif platform.system() == "Darwin":
ext_modules = []
else:
ext_modules = [
vnctptd, vnctpmd,
vnxtptd, vnxtpmd,
vnsgittd, vnsgitmd,
vnksgoldmd, vnksgoldtd,
vnnhmd, vnnhfutures, vnnhstock
]
ext_modules = check_extension_build_flag(
ext_modules, "VNPY_BUILD_CTP", vnctptd)
ext_modules = check_extension_build_flag(
ext_modules, "VNPY_BUILD_CTP", vnctpmd)
ext_modules = check_extension_build_flag(
ext_modules, "VNPY_BUILD_XTP", vnxtptd)
ext_modules = check_extension_build_flag(
ext_modules, "VNPY_BUILD_XTP", vnxtpmd)
ext_modules = check_extension_build_flag(
ext_modules, "VNPY_BUILD_sgit", vnsgittd)
ext_modules = check_extension_build_flag(
ext_modules, "VNPY_BUILD_sgit", vnsgitmd)
ext_modules = check_extension_build_flag(
ext_modules, "VNPY_BUILD_ksgold", vnksgoldmd)
ext_modules = check_extension_build_flag(
ext_modules, "VNPY_BUILD_ksgold", vnksgoldtd)
return ext_modules
parallel = os.environ.get('VNPY_BUILD_PARALLEL', None)
if parallel:
if parallel == 'auto':
parallel = os.cpu_count()
if parallel != 'no':
from ci.parallel_build_distutils import patch_distutils
patch_distutils(int(parallel))
setup(
name="vnpy",
version=get_version_string(),
author="vn.py team",
author_email="[email protected]",
license="MIT",
url="https://www.vnpy.com",
description="A framework for developing quant trading systems.",
long_description=__doc__,
keywords='quant quantitative investment trading algotrading',
include_package_data=True,
packages=find_packages(exclude=["tests", "ci", "tests.*"]),
package_data={"": [
"*.ico",
"*.ini",
"*.dll",
"*.so",
"*.pyd",
]},
install_requires=get_install_requires(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows Server 2008",
"Operating System :: Microsoft :: Windows :: Windows Server 2012",
"Operating System :: Microsoft :: Windows :: Windows Server 2019",
"Operating System :: POSIX :: Linux"
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Office/Business :: Financial :: Investment",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Simplified)"
],
ext_modules=get_ext_modules(),
)