aboutsummaryrefslogtreecommitdiff
path: root/PicoStream.spec
diff options
context:
space:
mode:
Diffstat (limited to 'PicoStream.spec')
-rw-r--r--PicoStream.spec44
1 files changed, 44 insertions, 0 deletions
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',
+)