Remove hardcoded libpython binaries and add debug step
All checks were successful
build / build-linux (push) Successful in 16s
All checks were successful
build / build-linux (push) Successful in 16s
This commit is contained in:
1
venv/lib/python3.12/site-packages/PyInstaller/hooks/__init__.py
Executable file
1
venv/lib/python3.12/site-packages/PyInstaller/hooks/__init__.py
Executable file
@@ -0,0 +1 @@
|
||||
#
|
||||
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PIL.Image.py
Executable file
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PIL.Image.py
Executable file
@@ -0,0 +1,17 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2005-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
# This hook was tested with Pillow 2.9.0 (Maintained fork of PIL): https://pypi.python.org/pypi/Pillow
|
||||
|
||||
from PyInstaller.utils.hooks import collect_submodules
|
||||
|
||||
# Include all PIL image plugins - module names containing 'ImagePlugin'. e.g. PIL.JpegImagePlugin
|
||||
hiddenimports = collect_submodules('PIL', lambda name: 'ImagePlugin' in name)
|
||||
13
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PIL.ImageFilter.py
Executable file
13
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PIL.ImageFilter.py
Executable file
@@ -0,0 +1,13 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2005-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
# Only used if installed, not mean to pull in numpy.
|
||||
excludedimports = ["numpy"]
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2005-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
# PIL's SpiderImagePlugin features a tkPhotoImage() method, which imports ImageTk (and thus brings in the whole Tcl/Tk
|
||||
# library). Assume that if people are really using tkinter in their application, they will also import it directly.
|
||||
excludedimports = ['tkinter']
|
||||
21
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PIL.py
Executable file
21
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PIL.py
Executable file
@@ -0,0 +1,21 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2005-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
# This hook was tested with Pillow 2.9.0 (Maintained fork of PIL):
|
||||
# https://pypi.python.org/pypi/Pillow
|
||||
|
||||
# Ignore tkinter to prevent inclusion of Tcl/Tk library and other GUI libraries. Assume that if people are really using
|
||||
# tkinter in their application, they will also import it directly and thus PyInstaller bundles the right GUI library.
|
||||
excludedimports = ['tkinter', 'PyQt5', 'PySide2', 'PyQt6', 'PySide6']
|
||||
|
||||
# Similarly, prevent inclusion of IPython, which in turn ends up pulling in whole matplotlib, along with its optional
|
||||
# GUI library dependencies.
|
||||
excludedimports += ['IPython']
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qsci.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qsci.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
29
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt.py
Executable file
29
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt.py
Executable file
@@ -0,0 +1,29 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
# When PyQt5.Qt is imported it implies the import of all PyQt5 modules. See
|
||||
# http://pyqt.sourceforge.net/Docs/PyQt5/Qt.html.
|
||||
import os
|
||||
|
||||
from PyInstaller.utils.hooks import get_module_file_attribute
|
||||
|
||||
# Only do this if PyQt5 is found.
|
||||
mfi = get_module_file_attribute('PyQt5')
|
||||
if mfi:
|
||||
# Determine the name of all these modules by looking in the PyQt5 directory.
|
||||
hiddenimports = []
|
||||
for f in os.listdir(os.path.dirname(mfi)):
|
||||
root, ext = os.path.splitext(os.path.basename(f))
|
||||
if root.startswith('Qt') and root != 'Qt':
|
||||
# On Linux and macOS, PyQt 5.14.1 has a ``.abi3`` suffix on all library names. Remove it.
|
||||
if root.endswith('.abi3'):
|
||||
root = root[:-5]
|
||||
hiddenimports.append('PyQt5.' + root)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DCore.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DCore.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DExtras.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DExtras.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DInput.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DInput.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DLogic.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DLogic.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DRender.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DRender.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtChart.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtChart.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtCore.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtCore.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtDBus.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtDBus.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtDesigner.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtDesigner.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtGui.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtGui.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtHelp.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtHelp.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtLocation.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtLocation.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
15
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetwork.py
Executable file
15
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetwork.py
Executable file
@@ -0,0 +1,15 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies, pyqt5_library_info
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
binaries += pyqt5_library_info.collect_qtnetwork_files()
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtNfc.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtNfc.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtOpenGL.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtOpenGL.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtQml.py
Executable file
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtQml.py
Executable file
@@ -0,0 +1,17 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies, pyqt5_library_info
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
qml_binaries, qml_datas = pyqt5_library_info.collect_qtqml_files()
|
||||
binaries += qml_binaries
|
||||
datas += qml_datas
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick3D.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick3D.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtScript.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtScript.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtSensors.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtSensors.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtSql.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtSql.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtSvg.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtSvg.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtTest.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtTest.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2014-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,22 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2014-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import \
|
||||
add_qt5_dependencies, pyqt5_library_info
|
||||
|
||||
# Ensure PyQt5 is importable before adding info depending on it.
|
||||
if pyqt5_library_info.version is not None:
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
|
||||
# Include helper process executable, translations, and resources.
|
||||
webengine_binaries, webengine_datas = pyqt5_library_info.collect_qtwebengine_files()
|
||||
binaries += webengine_binaries
|
||||
datas += webengine_datas
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2014-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKit.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKit.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2014-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtWidgets.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtWidgets.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtXml.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.QtXml.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt5_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt5_dependencies(__file__)
|
||||
29
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.py
Executable file
29
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.py
Executable file
@@ -0,0 +1,29 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2005-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import pyqt5_library_info, ensure_single_qt_bindings_package
|
||||
|
||||
# Allow only one Qt bindings package to be collected in frozen application.
|
||||
ensure_single_qt_bindings_package("PyQt5")
|
||||
|
||||
# Only proceed if PyQt5 can be imported.
|
||||
if pyqt5_library_info.version is not None:
|
||||
hiddenimports = [
|
||||
# PyQt5.10 and earlier uses sip in an separate package;
|
||||
'sip',
|
||||
# PyQt5.11 and later provides SIP in a private package. Support both.
|
||||
'PyQt5.sip',
|
||||
# Imported via __import__ in PyQt5/__init__.py
|
||||
'pkgutil',
|
||||
]
|
||||
|
||||
# Collect required Qt binaries.
|
||||
binaries = pyqt5_library_info.collect_extra_binaries()
|
||||
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.uic.py
Executable file
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt5.uic.py
Executable file
@@ -0,0 +1,17 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks import collect_data_files
|
||||
|
||||
# We need to include modules in PyQt5.uic.widget-plugins, so they can be dynamically loaded by uic. They should be
|
||||
# included as separate (data-like) files, so they can be found by os.listdir and friends. However, as this directory
|
||||
# is not a package, refer to it using the package (PyQt5.uic) followed by the subdirectory name (``widget-plugins/``).
|
||||
datas = collect_data_files('PyQt5.uic', True, 'widget-plugins')
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qsci.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qsci.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DCore.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DCore.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DExtras.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DExtras.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DInput.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DInput.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DLogic.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DLogic.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
16
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DRender.py
Executable file
16
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DRender.py
Executable file
@@ -0,0 +1,16 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
|
||||
hiddenimports += ["PyQt6.QtOpenGL"]
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtCharts.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtCharts.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtCore.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtCore.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtDBus.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtDBus.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtDesigner.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtDesigner.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtGraphs.py
Executable file
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtGraphs.py
Executable file
@@ -0,0 +1,17 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2024, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
|
||||
# These dependencies cannot seem to be inferred from linked libraries.
|
||||
hiddenimports += ['PyQt6.QtNetwork', 'PyQt6.QtQml']
|
||||
@@ -0,0 +1,17 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2024, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
|
||||
# These dependencies cannot seem to be inferred from linked libraries.
|
||||
hiddenimports += ['PyQt6.QtGraphs', 'PyQt6.QtQuickWidgets']
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtGui.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtGui.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtHelp.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtHelp.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
15
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetwork.py
Executable file
15
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetwork.py
Executable file
@@ -0,0 +1,15 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies, pyqt6_library_info
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
binaries += pyqt6_library_info.collect_qtnetwork_files()
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtNfc.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtNfc.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGL.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGL.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdf.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdf.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtQml.py
Executable file
17
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtQml.py
Executable file
@@ -0,0 +1,17 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies, pyqt6_library_info
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
qml_binaries, qml_datas = pyqt6_library_info.collect_qtqml_files()
|
||||
binaries += qml_binaries
|
||||
datas += qml_datas
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick3D.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick3D.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtSensors.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtSensors.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtSql.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtSql.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,17 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2025, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
|
||||
# This dependency cannot seem to be inferred from linked libraries (at least on Windows).
|
||||
hiddenimports += ['PyQt6.QtGui']
|
||||
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvg.py
Executable file
14
venv/lib/python3.12/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvg.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2021-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
||||
#
|
||||
# Distributed under the terms of the GNU General Public License (version 2
|
||||
# or later) with exception for distributing the bootloader.
|
||||
#
|
||||
# The full license is in the file COPYING.txt, distributed with this software.
|
||||
#
|
||||
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
from PyInstaller.utils.hooks.qt import add_qt6_dependencies
|
||||
|
||||
hiddenimports, binaries, datas = add_qt6_dependencies(__file__)
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user