123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # -*- mode: python ; coding: utf-8 -*-
- from PyInstaller.utils.hooks import collect_data_files
- datas = []
- datas += collect_data_files('gradio_client')
- datas += collect_data_files('gradio')
- datas += collect_data_files('onnxruntime')
- a = Analysis(
- ['rembg.py'],
- pathex=[],
- binaries=[],
- datas=datas,
- hiddenimports=[],
- hookspath=[],
- hooksconfig={},
- runtime_hooks=[],
- excludes=[],
- noarchive=False,
- module_collection_mode={
- 'gradio': 'py',
- },
- )
- pyz = PYZ(a.pure)
- exe = EXE(
- pyz,
- a.scripts,
- [],
- exclude_binaries=True,
- name='rembg',
- 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='rembg',
- )
|