fix missing modules when building via pyinstaller
This commit is contained in:
parent
bbdc151ed3
commit
af7fcc66fd
|
@ -9,7 +9,13 @@ a = Analysis(
|
||||||
pathex=[],
|
pathex=[],
|
||||||
binaries=[],
|
binaries=[],
|
||||||
datas=[],
|
datas=[],
|
||||||
hiddenimports=[],
|
hiddenimports=[
|
||||||
|
'aputils.enums',
|
||||||
|
'aputils.errors',
|
||||||
|
'aputils.misc',
|
||||||
|
'aputils.objects',
|
||||||
|
'aputils.signer'
|
||||||
|
],
|
||||||
hookspath=[],
|
hookspath=[],
|
||||||
hooksconfig={},
|
hooksconfig={},
|
||||||
runtime_hooks=[],
|
runtime_hooks=[],
|
||||||
|
|
Loading…
Reference in a new issue