From 4dd7ec84d30b4c3dfadd3417f28b8d45e9219e83 Mon Sep 17 00:00:00 2001 From: Vizonex <114684698+Vizonex@users.noreply.github.com> Date: Fri, 21 Feb 2025 00:35:06 -0600 Subject: [PATCH] Create hook-winloop.py --- .../stdhooks/hook-winloop.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 _pyinstaller_hooks_contrib/stdhooks/hook-winloop.py diff --git a/_pyinstaller_hooks_contrib/stdhooks/hook-winloop.py b/_pyinstaller_hooks_contrib/stdhooks/hook-winloop.py new file mode 100644 index 000000000..97ed8df85 --- /dev/null +++ b/_pyinstaller_hooks_contrib/stdhooks/hook-winloop.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, distributed with +# this software. +# +# SPDX-License-Identifier: GPL-2.0-or-later +# ------------------------------------------------------------------ +# +# Hook for the winloop (windows version of uvloop) package: https://pypi.python.org/pypi/winloop +# +from PyInstaller.utils.hooks import collect_submodules + +hiddenimports = collect_submodules('winloop')