代码拉取完成,页面将自动刷新
import sys, os
from cx_Freeze import setup, Executable
sys.path.append('pandastable')
#currently requires changing line 548 of hooks.py to make scipy work
#see https://bitbucket.org/anthony_tuininga/cx_freeze/issues/43
includes = ["pandastable"]#,"scipy.integrate.vode","scipy.integrate.lsoda","scipy.linalg"]
includefiles = ["pandastable/dataexplore.gif","pandastable/datasets",
"pandastable/plugins"]
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {"packages": ["os","numpy","matplotlib","pandas",
"scipy","seaborn","IPython",
"statsmodels","pandastable"],
"excludes": [],
"namespace_packages": ['mpl_toolkits'],
"include_msvcr": True,
"includes": includes,
"include_files": includefiles}
base = None
if sys.platform == "win32":
#base = None
base = "Win32GUI"
executables = [Executable("main.py", base=base,
copyDependentFiles = True,
targetName='DataExplore.exe',
shortcutName="DataExplore",
shortcutDir="DesktopFolder",
icon="img/dataexplore.ico")]
setup( name = "DataExplore",
version = "0.7.2",
description = "Data analysis and plotter",
options = {"build_exe": build_exe_options},
executables = executables)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。