Codebase list python-lsassy / 131ed43a-d587-40fc-be57-8adae73db7f0/main hooks / hook-lsassy.py
131ed43a-d587-40fc-be57-8adae73db7f0/main

Tree @131ed43a-d587-40fc-be57-8adae73db7f0/main (Download .tar.gz)

hook-lsassy.py @131ed43a-d587-40fc-be57-8adae73db7f0/mainraw · history · blame

from PyInstaller.utils.hooks import collect_submodules

"""
Note that output "table_output" has been removed. There's a bug regarding pyinstaller and 
rich library which prevents compiling lsassy if this lib is somehow imported.
"""
hiddenimports = (collect_submodules('lsassy.exec')
                 + collect_submodules('lsassy.output')
                 + collect_submodules('lsassy.dumpmethod'))
hiddenimports.remove('lsassy.output.table_output')