Skip to content

Commit

Permalink
Changed overviewer.spec to build full distribution, not just exe.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory-AM committed Jul 7, 2023
1 parent c5df85c commit ccd136c
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions overviewer.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# -*- mode: python -*-
# spec file for pyinstaller

block_cipher = None

import sys
sys.modules['FixTk'] = None

def get_overviewer_pkgname():
from overviewer_core import overviewer_version
return "overviewer-" + overviewer_version.VERSION

a = Analysis(['overviewer.py'],
binaries=None,
datas=[("overviewer_core/data", "overviewer_core/data")],
hiddenimports=[
'overviewer_core.aux_files.genPOI',
# https://github.com/pypa/setuptools/issues/1963
'pkg_resources.py2_warn',
],
hookspath=[],
runtime_hooks=[],
excludes=['FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='overviewer',
debug=False,
strip=False,
upx=False,
console=True )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=False,
name=get_overviewer_pkgname())

0 comments on commit ccd136c

Please sign in to comment.