2019-03-28 08:30:49 +00:00
|
|
|
"""
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
|
2019-02-26 02:31:23 +00:00
|
|
|
import ast
|
2019-03-04 09:18:30 +00:00
|
|
|
import platform
|
2019-02-26 02:31:23 +00:00
|
|
|
import re
|
2019-03-29 08:49:47 +00:00
|
|
|
import sys
|
2019-03-04 09:18:30 +00:00
|
|
|
|
2019-02-18 09:40:15 +00:00
|
|
|
from setuptools import Extension, find_packages, setup
|
|
|
|
|
2019-02-26 02:31:23 +00:00
|
|
|
with open("vnpy/__init__.py", "rb") as f:
|
|
|
|
version_line = re.search(
|
|
|
|
r"__version__\s+=\s+(.*)", f.read().decode("utf-8")
|
|
|
|
).group(1)
|
|
|
|
version = str(ast.literal_eval(version_line))
|
|
|
|
|
2019-02-19 02:39:23 +00:00
|
|
|
if platform.uname().system == "Windows":
|
2019-04-15 16:56:08 +00:00
|
|
|
compiler_flags = [
|
|
|
|
"/MP", "/std:c++17", # standard
|
|
|
|
"/O2", "/Ob2", "/Oi", "/Ot", "/Oy", "/GL", # Optimization
|
|
|
|
"/wd4819" # 936 code page
|
|
|
|
]
|
2019-03-04 09:18:30 +00:00
|
|
|
extra_link_args = []
|
2019-02-19 02:39:23 +00:00
|
|
|
else:
|
2019-04-15 16:56:08 +00:00
|
|
|
compiler_flags = [
|
|
|
|
"-std=c++17", # standard
|
|
|
|
"-O3", # Optimization
|
|
|
|
"-Wno-delete-incomplete", "-Wno-sign-compare",
|
|
|
|
]
|
2019-03-04 09:18:30 +00:00
|
|
|
extra_link_args = ["-lstdc++"]
|
2019-02-19 02:39:23 +00:00
|
|
|
|
2019-04-15 16:56:08 +00:00
|
|
|
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"],
|
2019-05-14 05:45:08 +00:00
|
|
|
libraries=["thostmduserapi_se", "thosttraderapi_se", ],
|
2019-04-15 16:56:08 +00:00
|
|
|
extra_compile_args=compiler_flags,
|
|
|
|
extra_link_args=extra_link_args,
|
|
|
|
depends=[],
|
|
|
|
runtime_library_dirs=["$ORIGIN"],
|
|
|
|
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"],
|
2019-05-14 06:17:33 +00:00
|
|
|
libraries=["thostmduserapi_se", "thosttraderapi_se", ],
|
2019-04-15 16:56:08 +00:00
|
|
|
extra_compile_args=compiler_flags,
|
|
|
|
extra_link_args=extra_link_args,
|
|
|
|
runtime_library_dirs=["$ORIGIN"],
|
|
|
|
depends=[],
|
|
|
|
language="cpp",
|
|
|
|
)
|
|
|
|
vnoes = Extension(
|
|
|
|
"vnpy.api.oes.vnoes",
|
|
|
|
[
|
|
|
|
"vnpy/api/oes/vnoes/generated_files/classes_1.cpp",
|
|
|
|
"vnpy/api/oes/vnoes/generated_files/classes_2.cpp",
|
|
|
|
"vnpy/api/oes/vnoes/generated_files/module.cpp",
|
|
|
|
],
|
|
|
|
include_dirs=["vnpy/api/oes/include",
|
|
|
|
"vnpy/api/oes/vnoes", ],
|
|
|
|
define_macros=[("BRIGAND_NO_BOOST_SUPPORT", "1")],
|
|
|
|
undef_macros=[],
|
|
|
|
library_dirs=["vnpy/api/oes/libs"],
|
|
|
|
libraries=["oes_api"],
|
|
|
|
extra_compile_args=compiler_flags,
|
|
|
|
extra_link_args=extra_link_args,
|
2019-04-15 17:40:03 +00:00
|
|
|
runtime_library_dirs=["$ORIGIN"],
|
2019-04-15 16:56:08 +00:00
|
|
|
depends=[],
|
|
|
|
language="cpp",
|
|
|
|
)
|
2019-02-18 09:40:15 +00:00
|
|
|
|
2019-04-15 17:40:03 +00:00
|
|
|
if platform.system() == "Windows":
|
2019-03-04 09:18:30 +00:00
|
|
|
# use pre-built pyd for windows ( support python 3.7 only )
|
2019-02-26 02:47:19 +00:00
|
|
|
ext_modules = []
|
2019-04-15 17:40:03 +00:00
|
|
|
elif platform.system() == "Darwin":
|
|
|
|
ext_modules = []
|
2019-02-25 03:33:22 +00:00
|
|
|
else:
|
2019-03-04 09:18:30 +00:00
|
|
|
ext_modules = [vnctptd, vnctpmd, vnoes]
|
2019-02-25 03:33:22 +00:00
|
|
|
|
2019-02-19 02:39:23 +00:00
|
|
|
pkgs = find_packages()
|
|
|
|
|
2019-05-15 09:22:52 +00:00
|
|
|
|
|
|
|
def is_psycopg2_exists():
|
|
|
|
try:
|
|
|
|
import psycopg2
|
|
|
|
return True
|
|
|
|
except ImportError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2019-03-29 08:49:47 +00:00
|
|
|
install_requires = [
|
|
|
|
"PyQt5<5.12",
|
|
|
|
"qdarkstyle",
|
|
|
|
"requests",
|
|
|
|
"websocket-client",
|
|
|
|
"peewee",
|
2019-04-18 07:01:12 +00:00
|
|
|
"pymysql",
|
|
|
|
"mongoengine",
|
2019-03-29 08:49:47 +00:00
|
|
|
"numpy",
|
|
|
|
"pandas",
|
|
|
|
"matplotlib",
|
|
|
|
"seaborn",
|
|
|
|
"futu-api",
|
|
|
|
"tigeropen",
|
2019-04-18 04:41:59 +00:00
|
|
|
"rqdatac",
|
2019-03-29 08:49:47 +00:00
|
|
|
"ta-lib",
|
2019-05-10 06:30:45 +00:00
|
|
|
"ibapi",
|
|
|
|
"deap"
|
2019-03-29 08:49:47 +00:00
|
|
|
]
|
2019-05-15 09:22:52 +00:00
|
|
|
if not is_psycopg2_exists():
|
|
|
|
install_requires.append("psycopg2-binary")
|
|
|
|
|
2019-03-29 08:49:47 +00:00
|
|
|
if sys.version_info.minor < 7:
|
|
|
|
install_requires.append("dataclasses")
|
|
|
|
|
2019-03-04 09:18:30 +00:00
|
|
|
setup(
|
2019-02-18 09:40:15 +00:00
|
|
|
name="vnpy",
|
2019-02-26 02:31:23 +00:00
|
|
|
version=version,
|
2019-03-28 08:30:49 +00:00
|
|
|
author="vn.py team",
|
|
|
|
author_email="vn.py@foxmail.com",
|
|
|
|
license="MIT",
|
|
|
|
url="https://www.vnpy.com",
|
|
|
|
description="A framework for developing quant trading systems.",
|
|
|
|
long_description=__doc__,
|
|
|
|
keywords='quant quantitative investment trading algotrading',
|
2019-02-19 02:39:23 +00:00
|
|
|
include_package_data=True,
|
|
|
|
packages=pkgs,
|
2019-02-26 02:31:23 +00:00
|
|
|
package_data={"": [
|
2019-03-28 14:35:45 +00:00
|
|
|
"*.ico",
|
|
|
|
"*.ini",
|
|
|
|
"*.dll",
|
|
|
|
"*.so",
|
2019-03-29 10:56:47 +00:00
|
|
|
"*.pyd",
|
2019-02-19 02:39:23 +00:00
|
|
|
]},
|
2019-03-29 08:49:47 +00:00
|
|
|
install_requires=install_requires,
|
2019-03-28 08:30:49 +00:00
|
|
|
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 2012",
|
|
|
|
"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)",
|
|
|
|
"Natural Language :: Chinese (Simplified)"
|
|
|
|
],
|
2019-02-25 03:33:22 +00:00
|
|
|
ext_modules=ext_modules
|
2019-02-18 09:40:15 +00:00
|
|
|
)
|