diff --git a/bluezip.exe.manifest b/bluezip.exe.manifest new file mode 100644 index 0000000..1126141 --- /dev/null +++ b/bluezip.exe.manifest @@ -0,0 +1,8 @@ + + + + + true + + + diff --git a/bluezip.spec b/bluezip.spec new file mode 100644 index 0000000..dac45c1 --- /dev/null +++ b/bluezip.spec @@ -0,0 +1,33 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + + +a = Analysis(['bluezip.py'], + binaries=[], + datas=[], + hiddenimports=[], + hookspath=[], + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False) +pyz = PYZ(a.pure, a.zipped_data, + cipher=block_cipher) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + [], + name='bluezip', + debug=False, + manifest='bluezip.exe.manifest', + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True )