Ai
2 Star 42 Fork 14

参考答案开心否/PyQt5_example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyqt5_example_exe.spec 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
# -*- mode: python ; coding: utf-8 -*-
import sys
sys.setrecursionlimit(5000)
block_cipher = None
a = Analysis(['app.py'],
pathex=[],
binaries=[],
datas=[(r"res\*",r"res"),
(r"config\skin\white.qss",r"config\skin"),
(r"models\db.sql",r"models")],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
for d in a.datas:
if '_C.cp38-win_amd64.pyd' in d[0]:
a.datas.remove(d)
break
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='pyqt5_example',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None , icon='res\\icon\\首页.ico',
version="file_verison_info.txt")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wp19991/PyQt5_example.git
git@gitee.com:wp19991/PyQt5_example.git
wp19991
PyQt5_example
PyQt5_example
main

搜索帮助