fix missing files with pyinstaller

This commit is contained in:
Prohurtz 2022-11-07 12:11:48 -08:00
parent b1472949c7
commit c4338c95b2
5 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ block_cipher = None
a = Analysis(['eyetrackapp.py'],
pathex=[],
binaries=[],
datas=[("Audio/*", "Audio"), ("Images/*", "Images/"), ("pye3dcustom/refraction_models/*", "pye3dcustom/refraction_models")],
datas=[("Audio/*", "Audio"), ("Images/*", "Images/"), ("pye3dcustom/*", "pye3dcustom/"), ("pye3d/refraction_models/*", "pye3d/refraction_models/")],
hiddenimports=['cv2', 'numpy', 'PySimpleGui'],
hookspath=[],
hooksconfig={},