Skip to content

Commit

Permalink
v1.1
Browse files Browse the repository at this point in the history
add merlinator spec
  • Loading branch information
lucastucious committed Dec 20, 2023
1 parent ed18f35 commit 452d207
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ MANIFEST
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
Expand Down
38 changes: 38 additions & 0 deletions src/merlinator.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['merlinator.py', 'main_gui.py', 'treeviews.py', 'io_utils.py', 'gui_actions.py', 'audio.py', 'audio_converter.py'],
pathex=['data/'],
binaries=[],
datas=[('data/defaultPics.zip', '.'), ('data/defaultPics.zip', 'data')],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='merlinator',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
contents_directory='data',
)

0 comments on commit 452d207

Please sign in to comment.