mirror of
https://github.com/yuruotong1/autoMate.git
synced 2025-12-26 05:16:21 +08:00
60 lines
1.2 KiB
Python
60 lines
1.2 KiB
Python
# -*- mode: python ; coding: utf-8 -*-
|
|
from PyInstaller.utils.hooks import collect_data_files
|
|
import os
|
|
import shutil
|
|
|
|
datas = []
|
|
datas += collect_data_files('gradio_client')
|
|
datas += collect_data_files('gradio')
|
|
datas += collect_data_files('safehttpx')
|
|
datas += collect_data_files('groovy')
|
|
base_path = os.path.dirname(os.path.abspath('__file__'))
|
|
imgs_path = os.path.join(base_path, 'imgs')
|
|
datas += [(imgs_path, 'imgs')]
|
|
|
|
a = Analysis(
|
|
['main.py'],
|
|
pathex=[],
|
|
binaries=[],
|
|
datas=datas,
|
|
hiddenimports=[],
|
|
hookspath=[],
|
|
hooksconfig={},
|
|
runtime_hooks=[],
|
|
excludes=[],
|
|
noarchive=False,
|
|
optimize=0,
|
|
module_collection_mode={
|
|
'gradio': 'py',
|
|
},
|
|
)
|
|
pyz = PYZ(a.pure)
|
|
|
|
exe = EXE(
|
|
pyz,
|
|
a.scripts,
|
|
[],
|
|
exclude_binaries=True,
|
|
name='main',
|
|
debug=False,
|
|
bootloader_ignore_signals=False,
|
|
strip=False,
|
|
upx=True,
|
|
console=True,
|
|
disable_windowed_traceback=False,
|
|
argv_emulation=False,
|
|
target_arch=None,
|
|
codesign_identity=None,
|
|
entitlements_file=None,
|
|
)
|
|
coll = COLLECT(
|
|
exe,
|
|
a.binaries,
|
|
a.datas,
|
|
strip=False,
|
|
upx=True,
|
|
upx_exclude=[],
|
|
name='main',
|
|
)
|
|
|