2023-09-27 09:09:42 +03:00
|
|
|
# -*- mode: python ; coding: utf-8 -*-
|
2023-09-28 17:25:49 +03:00
|
|
|
import sys
|
|
|
|
import typing
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
if typing.TYPE_CHECKING:
|
|
|
|
from PyInstaller.building.api import COLLECT, EXE, MERGE, PYZ # noqa: F401
|
|
|
|
from PyInstaller.building.build_main import Analysis # noqa: F401
|
|
|
|
from PyInstaller.building.datastruct import TOC, Target, Tree # noqa: F401
|
|
|
|
from PyInstaller.building.osx import BUNDLE # noqa: F401
|
|
|
|
from PyInstaller.building.splash import Splash # noqa: F401
|
|
|
|
|
2023-09-28 11:08:53 +03:00
|
|
|
from PyInstaller.utils.hooks import copy_metadata
|
2023-09-27 09:09:42 +03:00
|
|
|
|
2023-09-29 12:13:24 +03:00
|
|
|
datas = [('statapp/ui/images/*', 'ui/images')]
|
2023-09-28 11:08:53 +03:00
|
|
|
datas += copy_metadata('statapp')
|
2023-09-27 09:09:42 +03:00
|
|
|
|
|
|
|
a = Analysis(
|
|
|
|
['statapp/__main__.py'],
|
|
|
|
pathex=[],
|
|
|
|
binaries=[],
|
2023-09-28 11:08:53 +03:00
|
|
|
datas=datas,
|
2023-09-27 09:09:42 +03:00
|
|
|
hiddenimports=[],
|
|
|
|
hookspath=[],
|
|
|
|
hooksconfig={},
|
|
|
|
runtime_hooks=[],
|
|
|
|
excludes=[],
|
|
|
|
noarchive=False,
|
|
|
|
)
|
2023-09-28 17:25:49 +03:00
|
|
|
|
|
|
|
prev_binaries = set(a.binaries)
|
|
|
|
if sys.platform in ('linux', 'darwin'):
|
|
|
|
a.exclude_system_libraries(list_of_exceptions=[]) # glob expression
|
|
|
|
print('\n\nSTRIPPED SYSTEM LIBS')
|
|
|
|
pprint(sorted(set(prev_binaries) - set(a.binaries)))
|
|
|
|
|
2023-09-27 09:09:42 +03:00
|
|
|
pyz = PYZ(a.pure)
|
|
|
|
|
|
|
|
exe = EXE(
|
|
|
|
pyz,
|
|
|
|
a.scripts,
|
|
|
|
a.binaries,
|
|
|
|
a.datas,
|
|
|
|
[],
|
|
|
|
name='statapp',
|
|
|
|
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,
|
2023-09-29 12:13:24 +03:00
|
|
|
icon='statapp/ui/images/logo.ico',
|
2023-09-27 09:09:42 +03:00
|
|
|
)
|