fix missing modules when building via pyinstaller

merge-requests/48/head
Izalia Mae 2022-12-11 09:15:03 -05:00
parent bbdc151ed3
commit af7fcc66fd
1 changed files with 7 additions and 1 deletions

View File

@ -9,7 +9,13 @@ a = Analysis(
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hiddenimports=[
'aputils.enums',
'aputils.errors',
'aputils.misc',
'aputils.objects',
'aputils.signer'
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],