Merge pull request #51 from ShyAssassin/main

Add executable icon with pyinstaller
This commit is contained in:
Prohurtz 2022-12-08 08:06:41 -06:00 committed by GitHub
commit a0f27aaa05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ block_cipher = None
a = Analysis(['eyetrackapp.py'],
pathex=[],
binaries=[],
datas=[("Audio/*", "Audio"), ("Images/*", "Images/"), ("pye3dcustom/*", "pye3dcustom/"), ("pye3d/refraction_models/*", "pye3d/refraction_models/")],
datas=[("Audio/*", "Audio"), ("Images/*", "Images/"), ("pye3d/refraction_models/*", "pye3d/refraction_models/")],
hiddenimports=['cv2', 'numpy', 'PySimpleGui'],
hookspath=[],
hooksconfig={},
@ -32,7 +32,8 @@ exe = EXE(pyz,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None )
entitlements_file=None,
icon="Images/logo.ico" )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,