diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | PicoStream.spec | 44 |
2 files changed, 44 insertions, 1 deletions
@@ -5,5 +5,4 @@ complexipy.json build/*
*egg-info*
-*.spec
dist/
diff --git a/PicoStream.spec b/PicoStream.spec new file mode 100644 index 0000000..fb14691 --- /dev/null +++ b/PicoStream.spec @@ -0,0 +1,44 @@ +# -*- mode: python ; coding: utf-8 -*- + + +a = Analysis( + ['picostream\\main.py'], + pathex=[], + binaries=[], + datas=[], + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + [], + exclude_binaries=True, + name='PicoStream', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + 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=True, + upx_exclude=[], + name='PicoStream', +) |
