1 Star 0 Fork 0

我不明白/pandastable

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
freeze.py 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
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)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/686500/pandastable.git
git@gitee.com:686500/pandastable.git
686500
pandastable
pandastable
master

搜索帮助