100 lines
2.3 KiB
Python
100 lines
2.3 KiB
Python
# -*- mode: python ; coding: utf-8 -*-
|
|
|
|
block_cipher = None
|
|
|
|
a = Analysis(
|
|
['main.py'],
|
|
pathex=[],
|
|
binaries=[],
|
|
datas=[],
|
|
hiddenimports=[
|
|
'python_core',
|
|
'python_core.config',
|
|
'python_core.utils',
|
|
'python_core.utils.logger',
|
|
'python_core.utils.jsonrpc',
|
|
'python_core.utils.helpers',
|
|
'python_core.utils.validators',
|
|
'python_core.services',
|
|
'python_core.services.template_manager',
|
|
'python_core.services.project_manager',
|
|
'python_core.services.media_manager',
|
|
'python_core.services.audio_manager',
|
|
'python_core.services.model_manager',
|
|
'python_core.services.resource_category_manager',
|
|
'python_core.services.file_manager',
|
|
'python_core.ai_video',
|
|
'python_core.ai_video.video_generator',
|
|
'python_core.ai_video.api_client',
|
|
'python_core.ai_video.cloud_storage',
|
|
'python_core.audio_processing',
|
|
'python_core.audio_processing.core',
|
|
'python_core.video_processing',
|
|
'python_core.video_processing.core',
|
|
'requests',
|
|
'PIL',
|
|
'json',
|
|
'sqlite3',
|
|
'pathlib',
|
|
'uuid',
|
|
'hashlib',
|
|
'base64',
|
|
'urllib',
|
|
'urllib.parse',
|
|
'urllib.request',
|
|
'http',
|
|
'http.client',
|
|
'ssl',
|
|
'certifi',
|
|
],
|
|
hookspath=[],
|
|
hooksconfig={},
|
|
runtime_hooks=[],
|
|
excludes=[
|
|
'tkinter',
|
|
'matplotlib',
|
|
'scipy',
|
|
'pandas',
|
|
'jupyter',
|
|
'notebook',
|
|
'IPython',
|
|
'pytest',
|
|
'unittest',
|
|
'test',
|
|
'tests',
|
|
'_pytest',
|
|
'setuptools',
|
|
'pip',
|
|
'wheel',
|
|
'distutils',
|
|
],
|
|
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='mixvideo-python-core',
|
|
debug=False,
|
|
bootloader_ignore_signals=False,
|
|
strip=False,
|
|
upx=True,
|
|
upx_exclude=[],
|
|
runtime_tmpdir=None,
|
|
console=True,
|
|
disable_windowed_traceback=False,
|
|
argv_emulation=False,
|
|
target_arch=None,
|
|
codesign_identity=None,
|
|
entitlements_file=None,
|
|
)
|