diff options
| author | samsci | 2025-10-14 15:46:32 +1000 |
|---|---|---|
| committer | samsci | 2025-10-14 15:46:32 +1000 |
| commit | 945554d0c88ab4b7a69295c9414f82dbb4b5e98c (patch) | |
| tree | 63ce80981af3bf78610778e565111002a2fc877e | |
| parent | adac88ca194a35d386d418fcce3ff4cafdf0193b (diff) | |
| download | picostream-945554d0c88ab4b7a69295c9414f82dbb4b5e98c.tar.gz picostream-945554d0c88ab4b7a69295c9414f82dbb4b5e98c.zip | |
.
| -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', +) |
