diff --git a/news/96.new.rst b/news/96.new.rst new file mode 100644 index 000000000..8428b7413 --- /dev/null +++ b/news/96.new.rst @@ -0,0 +1 @@ +Add a hook for ``aumbry`` to collect data, binaries and hidden imports. diff --git a/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aumbry.py b/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aumbry.py new file mode 100644 index 000000000..14ef37c41 --- /dev/null +++ b/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aumbry.py @@ -0,0 +1,17 @@ +# ------------------------------------------------------------------ +# Copyright (c) 2020 PyInstaller Development Team. +# +# This file is distributed under the terms of the GNU General Public +# License (version 2.0 or later). +# +# The full license is available in LICENSE.GPL.txt, distributed with +# this software. +# +# SPDX-License-Identifier: GPL-2.0-or-later +# ------------------------------------------------------------------ + +# Tested with Aumbry 0.10.0 + +from PyInstaller.utils.hooks import collect_all + +datas, binaries, hiddenimports = collect_all('aumbry')