This commit is contained in:
2025-04-13 19:06:01 +02:00
commit cc91de9d52
29 changed files with 4049 additions and 0 deletions

53
OxApp.spec Normal file
View File

@@ -0,0 +1,53 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports = [
'qasync',
'asyncio',
'aiopath',
'aiohttp',
'aiofiles',
'PySide6.QtWebEngineCore',
'PySide6.QtWebEngineWidgets'
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=['tkinter', 'matplotlib', 'scipy', 'numpy', 'pandas',
'IPython', 'jupyter', 'PyQt5', 'PyQt6'],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='OxApp',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=False,
console=False,
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=False,
upx_exclude=['vcruntime140.dll', 'libcrypto-1_1.dll', 'libssl-1_1.dll'],
name='OxApp',
)