Files
wechat_crawler/build_exe.spec

86 lines
1.9 KiB
RPMSpec
Raw Permalink Normal View History

# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['job_extractor_gui.py'],
pathex=[],
binaries=[],
datas=[('wxauto', 'wxauto')],
hiddenimports=[
'wxauto',
'wxauto.wx',
'wxauto.ui',
'wxauto.ui.main',
'wxauto.ui.base',
'wxauto.ui.chatbox',
'wxauto.ui.component',
'wxauto.ui.navigationbox',
'wxauto.ui.sessionbox',
'wxauto.msgs',
'wxauto.msgs.base',
'wxauto.msgs.msg',
'wxauto.msgs.friend',
'wxauto.msgs.self',
'wxauto.msgs.type',
'wxauto.msgs.attr',
'wxauto.utils',
'wxauto.utils.tools',
'wxauto.utils.win32',
'wxauto.param',
'wxauto.logger',
'wxauto.languages',
'wxauto.exceptions',
'wxauto.uiautomation',
'PIL',
'PIL._imagingtk',
'PIL._tkinter_finder',
'requests',
'json',
'threading',
'tkinter',
'tkinter.ttk',
'tkinter.scrolledtext',
'pythoncom',
'pywintypes',
'win32com',
'win32com.client',
'win32api',
'win32con',
'win32gui',
'win32process',
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='微信岗位提取工具',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False, # 不显示控制台窗口
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)