-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (38 loc) · 1.24 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
from setuptools import setup, find_packages
from codecs import open
with open("README.md","r",encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="GPminer",
# 版本号: 第几次模块增加,第几次函数增加,第几次函数功能修改
# (每次高级别序号增加后,低级别序号归0)
# alpha为调试版,beta为测试版,没有后缀为稳定版
version="1.2.1",
author="LH.Li",
author_email="[email protected]",
description='Package for backtest',
long_description=long_description,
# 描述文件为md格式
long_description_content_type="text/markdown",
url="https://github.com/LHanLi/GPminer",
packages=find_packages(),
install_requires = [
#'pandas',
#'scipy',
#'statsmodels',
#'seaborn',
#'plottable',
#'pyecharts',
#'numpy_ext',
#'xlsxwriter'
],
classifiers=[
# 该软件包仅与Python3兼容
"Programming Language :: Python :: 3",
# 根据GPL 3.0许可证开源
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
# 与操作系统无关
"Operating System :: OS Independent",
],
)
# python3 setup.py install --u