Ejemplo n.º 1
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------


hiddenimports = ['sip', 'PyQt5.QtCore']

from PyInstaller.utils.hooks import qt5_plugins_binaries


binaries = []
binaries.extend(qt5_plugins_binaries('accessible'))
binaries.extend(qt5_plugins_binaries('iconengines'))
binaries.extend(qt5_plugins_binaries('imageformats'))
binaries.extend(qt5_plugins_binaries('inputmethods'))
binaries.extend(qt5_plugins_binaries('graphicssystems'))
binaries.extend(qt5_plugins_binaries('platforms'))
#-----------------------------------------------------------------------------
# Copyright (c) 2013-2016, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------

# QtMultimedia tries to pull in QtNetwork

hiddenimports = [ 'PyQt5.QtNetwork' ]

# QtMultimedia needs some plugins

from PyInstaller.utils.hooks import qt5_plugins_binaries

binaries = []
binaries.extend( qt5_plugins_binaries( 'audio' ) )
binaries.extend( qt5_plugins_binaries( 'mediaservice' ) )
Ejemplo n.º 3
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013-2016, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------


hiddenimports = ['sip', 'PyQt5.QtCore']

from PyInstaller.utils.hooks import qt5_plugins_binaries

binaries = qt5_plugins_binaries('sqldrivers')
Ejemplo n.º 4
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------


hiddenimports = ['sip', 'PyQt5.QtCore']

from PyInstaller.utils.hooks import qt5_plugins_binaries

# Network Bearer Management in qt 4.7+
binaries = qt5_plugins_binaries('bearer')
Ejemplo n.º 5
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------


hiddenimports = ['sip', 'PyQt5.QtCore']

from PyInstaller.utils.hooks import qt5_plugins_binaries

binaries = qt5_plugins_binaries('script')
Ejemplo n.º 6
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013-2016, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------


hiddenimports = ['sip']

from PyInstaller.utils.hooks import qt5_plugins_binaries

binaries = qt5_plugins_binaries('codecs')
Ejemplo n.º 7
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------

hiddenimports = ['sip', 'PyQt5.QtCore']

from PyInstaller.utils.hooks import qt5_plugins_binaries

# Network Bearer Management in qt 4.7+
binaries = qt5_plugins_binaries('bearer')
Ejemplo n.º 8
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013-2016, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------

hiddenimports = ['sip']

from PyInstaller.utils.hooks import qt5_plugins_binaries

binaries = qt5_plugins_binaries('codecs')
Ejemplo n.º 9
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------

hiddenimports = ['sip', 'PyQt5.QtCore']

from PyInstaller.utils.hooks import qt5_plugins_binaries

binaries = qt5_plugins_binaries('script')
Ejemplo n.º 10
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013-2016, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------

# QtMultimedia tries to pull in QtNetwork

hiddenimports = ['PyQt5.QtNetwork']

# QtMultimedia needs some plugins

from PyInstaller.utils.hooks import qt5_plugins_binaries

binaries = []
binaries.extend(qt5_plugins_binaries('audio'))
binaries.extend(qt5_plugins_binaries('mediaservice'))
Ejemplo n.º 11
0
#-----------------------------------------------------------------------------
# Copyright (c) 2013-2016, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License with exception
# for distributing bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------

hiddenimports = ['sip', 'PyQt5.QtCore']

from PyInstaller.utils.hooks import qt5_plugins_binaries

binaries = qt5_plugins_binaries('sqldrivers')