Skip to content

Commit

Permalink
chore: Add pod5Viewer.spec file for building the application on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
dietvin committed Jun 27, 2024
1 parent 9d1dc2d commit 33420b9
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions ubuntu_compile/pod5Viewer.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# -*- mode: python ; coding: utf-8 -*-

a = Analysis(
['../pod5Viewer/__main__.py'],
pathex=[],
binaries=[],
datas=[('../pod5Viewer/icon.ico', '.'),
],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='pod5Viewer',
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,
icon=['../pod5Viewer/icon.ico'],
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='pod5Viewer',
)

0 comments on commit 33420b9

Please sign in to comment.