diff --git a/vfs_explorer/build/build.spec b/vfs_explorer/build/build.spec new file mode 100644 index 0000000..926720c --- /dev/null +++ b/vfs_explorer/build/build.spec @@ -0,0 +1,46 @@ +# -*- mode: python ; coding: utf-8 -*- + + +a = Analysis( + ['../../vfs_explorer.py'], + pathex=[], + binaries=[], + datas=[('../../COPYING', '.'), ('../../README.md', '.'), + ('../languages/*.qm', 'languages')], + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + [], + exclude_binaries=True, + name='VFS Explorer', + 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, + contents_directory='vfs_explorer', +) +coll = COLLECT( + exe, + a.binaries, + a.datas, + strip=False, + upx=True, + upx_exclude=[], + name='VFS Explorer', +)