Skip to content

Commit

Permalink
Update ygt.spec
Browse files Browse the repository at this point in the history
  • Loading branch information
psb1558 committed May 10, 2023
1 parent a09d5b6 commit eeccd42
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions src/ygt.spec
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# -*- mode: python ; coding: utf-8 -*-

import os

block_cipher = None


a = Analysis(
['ygt.py'],
pathex=[],
binaries=[],
datas=[('ygt/icons/*.png', 'icons'), ('ygt/fonts/*.ttf', 'fonts')],
hiddenimports=['xgridfit.xgridfit', 'xgridfit.ygridfit', 'xgridfit.xgfUFOWriter'],
hookspath=['./hooks'],
hiddenimports=[],
hookspath=['hooks'],
hooksconfig={},
runtime_hooks=[],
excludes=[],
Expand All @@ -24,33 +24,27 @@ pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
exclude_binaries=True,
name='ygt',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='ygt',
)
app = BUNDLE(
coll,
exe,
name='ygt.app',
icon='icons/ygt.ico',
icon=None,
bundle_identifier=None,
)

0 comments on commit eeccd42

Please sign in to comment.