add PyInstaller script and hook (#166)

This commit is contained in:
Mike Fährmann
2019-04-16 18:23:46 +02:00
parent 96c7ccd380
commit 18345381f3
3 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
from gallery_dl import extractor, downloader, postprocessor
hiddenimports = [
package.__name__ + "." + module
for package in (extractor, downloader, postprocessor)
for module in package.modules
]