diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-06-25 00:17:14 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-06-25 00:17:14 -0500 |
| commit | b4c2bf500d1939d93f1c2146798842d5f98902de (patch) | |
| tree | 9404312ac4cfe2da717bc28fa3cb635b922d27bd /pix.spec | |
| parent | 14eb01ff466ac78b2912d325a45786545d495f45 (diff) | |
| download | immich-frame-b4c2bf500d1939d93f1c2146798842d5f98902de.tar.xz immich-frame-b4c2bf500d1939d93f1c2146798842d5f98902de.zip | |
pyinstaller support
Diffstat (limited to 'pix.spec')
| -rw-r--r-- | pix.spec | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/pix.spec b/pix.spec new file mode 100644 index 0000000..c14fa14 --- /dev/null +++ b/pix.spec @@ -0,0 +1,38 @@ +# -*- mode: python ; coding: utf-8 -*- + + +a = Analysis( + ['pix.py'], + pathex=[], + binaries=[], + datas=[('./static/dist', 'static'), ('./static/public', 'public')], + hiddenimports=['flask_socketio', 'engineio'], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + a.binaries, + a.datas, + [], + name='pix', + 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, +) |
