forked from Scorpi000/QuantStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (52 loc) · 1.87 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
# -*- coding: utf-8 -*-
import setuptools
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="QuantStudio",
version="1.0.0",
author="scorpi000",
author_email="[email protected]",
maintainer="scorpi000",
maintainer_email="[email protected]",
description="Quant Studio",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/Scorpi000/QuantStudio/",
license="GPLv3",
platforms=["Windows"],
python_requires=">=3.5",
scripts=[],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
'Topic :: Office/Business :: Financial :: Investment'
],
install_requires=[
"numpy>=1.14.4+mkl",# 矩阵运算
"numexpr>=2.6.1",# 加速数值计算
"pandas==0.24.2",# 数据分析
"scipy>=0.18.1",# 科学计算
"cvxpy>=1.0.0",# 凸规划
"matplotlib>=2.2.3",# 绘图
"statsmodels>=0.9.0",# 概率统计
"h5py<3.0.0",# HDF5 文件
"cx-Oracle>=5.2.1",# Oracle 数据库
"pymssql>=2.1.3",# SQL Server 数据库
"mysql-connector-python<=8.0.16",# MySQL 数据库
"pyodbc>=4.0.14",# ODBC
"chardet>=3.0.4",# 解析字符编码
"progressbar2>=3.10.1",# 进度条
"fasteners>=0.14.0",# 进程文件锁
"pyface<7.0.0",# 对象参数
"traits>=4.6.0",# 对象参数
"traitsui>=6.0.0",# 对象参数
"tushare>=1.2.12",# tushare 数据源
"xlrd>=0.9.0",# 读 Excel 文件
#"xlwt>=1.3.0",# 写 Excel 文件
"openpyxl",# 写 Excel 文件
],
package_data={"QuantStudio": ["Matlab/*", "Lib/*", "Resource/*"]}
)