Skip to content

Commit

Permalink
Create .spec file
Browse files Browse the repository at this point in the history
  • Loading branch information
isatsam committed Aug 20, 2024
1 parent 9e321da commit 5afdc05
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions vfs_explorer/build/build.spec
Original file line number Diff line number Diff line change
@@ -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',
)

0 comments on commit 5afdc05

Please sign in to comment.