加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pack.py 616 Bytes
一键复制 编辑 原始数据 按行查看 历史
freepi 提交于 2018-01-12 14:57 . uPy V0.30
from distutils.core import setup
import py2exe
import sys
#this allows to run it with a simple double click.
sys.argv.append('py2exe')
py2exe_options = {
"includes": ["sip","PyQt4.QtCore","PyQt4.QtGui"],
"dll_excludes": ["MSVCP90.dll"],
"compressed": 1,
"optimize": 2,
"ascii": 0,
"bundle_files": 0,
}
setup(
name = 'IDE',
version = '1.0',
windows = [{"script":'uPyCraft.py',
"icon_resources": [(1,"./images/logo.ico")]
}],
zipfile = None,
options = {'py2exe': py2exe_options}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化