Add build helper for PyInstaller (fixes #22).

This commit is contained in:
Tobias Gruetzmacher 2016-03-20 21:42:41 +01:00
parent 90dfceaeb1
commit 2f61ecb721
2 changed files with 3 additions and 0 deletions

1
scripts/build-exe.cmd Normal file
View file

@ -0,0 +1 @@
pyinstaller -y --onefile --additional-hooks-dir=. ../dosage

View file

@ -0,0 +1,2 @@
from PyInstaller.utils.hooks import collect_submodules
hiddenimports = collect_submodules('dosagelib.plugins')