d93fed567c
This uses a feature introduced in PyInstaller 4.0 to register hooks as entry points and automatically discover them whenever a module is used.
6 lines
236 B
Python
6 lines
236 B
Python
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2016-2020 Tobias Gruetzmacher
|
|
from PyInstaller.utils.hooks import collect_submodules, copy_metadata
|
|
|
|
hiddenimports = collect_submodules('dosagelib.plugins')
|
|
datas = copy_metadata('dosage')
|