-
大小: 4.16MB文件类型: .zip金币: 1下载: 0 次发布日期: 2023-10-28
- 语言: 其他
- 标签: PyQt5_gpl-5.
资源简介
PyQt5_gpl-5.11.3.zip
代码片段和文件信息
# This script generates the Makefiles for building PyQt5.
#
# Copyright (c) 2018 Riverbank Computing Limited
#
# This file is part of PyQt5.
#
# This file may be used under the terms of the GNU General Public License
# version 3.0 as published by the Free Software Foundation and appearing in
# the file LICENSE included in the packaging of this file. Please review the
# following information to ensure the GNU General Public License version 3.0
# requirements will be met: http://www.gnu.org/copyleft/gpl.html.
#
# If you do not wish to use this file under the terms of the GPL version 3.0
# then you may purchase a commercial license. For more information contact
# info@riverbankcomputing.com.
#
# This file is provided AS IS with NO WARRANTY OF ANY KIND INCLUDING THE
# WARRANTY OF DESIGN MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
from distutils import sysconfig
import glob
import optparse
import os
import shutil
import stat
import sys
# Initialise the constants.
PYQT_VERSION_STR = “5.11.3“
SIP_MIN_VERSION = ‘4.19.11‘
class Modulemetadata:
“““ This class encapsulates the meta-data about a PyQt5 module. “““
def __init__(self qmake_QT=None qmake_TARGET=‘‘ qpy_lib=False cpp11=False public=True):
“““ Initialise the meta-data. “““
# The values to update qmake‘s QT variable.
self.qmake_QT = [] if qmake_QT is None else qmake_QT
# The value to set qmake‘s TARGET variable to. It defaults to the name
# of the module.
self.qmake_TARGET = qmake_TARGET
# Set if there is a qpy support library.
self.qpy_lib = qpy_lib
# Set if C++11 support is required.
self.cpp11 = cpp11
# Set if the module is public.
self.public = public
# The module meta-data.
MODULE_metaDATA = {
‘dbus‘: Modulemetadata(qmake_QT=[‘-gui‘]
qmake_TARGET=‘pyqt5‘)
‘QAxContainer‘: Modulemetadata(qmake_QT=[‘axcontainer‘])
‘Qt‘: Modulemetadata(qmake_QT=[‘-core‘ ‘-gui‘])
‘QtAndroidExtras‘: Modulemetadata(qmake_QT=[‘androidextras‘])
‘QtBluetooth‘: Modulemetadata(qmake_QT=[‘bluetooth‘])
‘QtCore‘: Modulemetadata(qmake_QT=[‘-gui‘] qpy_lib=True)
‘QtDBus‘: Modulemetadata(qmake_QT=[‘dbus‘ ‘-gui‘]
qpy_lib=True)
‘QtDesigner‘: Modulemetadata(qmake_QT=[‘designer‘]
qpy_lib=True)
‘Enginio‘: Modulemetadata(qmake_QT=[‘enginio‘])
‘QtGui‘: Modulemetadata(qpy_lib=True)
‘QtHelp‘: Modulemetadata(qmake_QT=[‘help‘])
‘QtLocation‘: Modulemetadata(qmake_QT=[‘location‘])
‘QtMacExtras‘: Modulemetadata(qmake_QT=[‘macextras‘])
‘QtMultimedia‘: Modulemetadata(qmake_QT=[‘multimedia‘])
‘QtMultimediaWidgets‘: Modulemetadata(
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 826 2018-10-01 14:38 PyQt5_gpl-5.11.3\__init__.py
文件 345174 2018-10-01 14:38 PyQt5_gpl-5.11.3\ChangeLog
文件 112127 2018-10-01 14:38 PyQt5_gpl-5.11.3\configure.py
文件 35147 2018-10-01 14:38 PyQt5_gpl-5.11.3\LICENSE
文件 3449 2018-10-01 14:16 PyQt5_gpl-5.11.3\mk_distinfo.py
文件 8565 2018-10-01 14:22 PyQt5_gpl-5.11.3\NEWS
文件 1904 2018-10-01 14:38 PyQt5_gpl-5.11.3\README
文件 1128 2018-10-01 14:22 PyQt5_gpl-5.11.3\config-tests\cfgtest_QtCore.cpp
文件 881 2018-10-01 14:22 PyQt5_gpl-5.11.3\config-tests\cfgtest_QtGui.cpp
文件 517 2018-10-01 14:22 PyQt5_gpl-5.11.3\config-tests\cfgtest_QtNetwork.cpp
文件 761 2018-10-01 14:22 PyQt5_gpl-5.11.3\config-tests\cfgtest_QtPrintSupport.cpp
文件 11599 2018-10-01 14:38 PyQt5_gpl-5.11.3\dbus\dbus.cpp
文件 2067 2018-10-01 14:38 PyQt5_gpl-5.11.3\dbus\helper.h
文件 435 2018-10-01 14:38 PyQt5_gpl-5.11.3\designer\designer.pro-in
文件 9243 2018-10-01 14:38 PyQt5_gpl-5.11.3\designer\pluginloader.cpp
文件 1982 2018-10-01 14:38 PyQt5_gpl-5.11.3\designer\pluginloader.h
文件 966 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\README
文件 773 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\README
文件 324 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\mainwindow.qrc
文件 5808 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\mainwindow.ui
文件 53505 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\mainwindow_rc.py
文件 7277 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\ui_mainwindow.py
文件 5556 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\webbrowser.py
文件 1242 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\icons\image0.xpm
文件 4495 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\icons\image1.xpm
文件 4495 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\icons\image2.xpm
文件 803 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\icons\image3.xpm
文件 1242 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\icons\image4.xpm
文件 5599 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\icons\image5.xpm
文件 3743 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\activeqt\webbrowser\icons\image6.xpm
文件 8150 2018-10-01 14:22 PyQt5_gpl-5.11.3\examples\animation\moveblocks.py
............此处省略1668个文件信息
- 上一篇:Unity3D 海洋,海水效果
- 下一篇:遥感图像处理与应用完整版PDF
评论
共有 条评论