1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# Specify the build system requirements.
[build-system]
requires = ["sip >=6.13.1, <7", "PyQt-builder >=1.19, <2"]
build-backend = "sipbuild.api"
[project]
name = "PyQt6-WebEngine"
version = "6.10.0"
description = "Python bindings for the Qt WebEngine framework"
readme = "README.md"
urls.homepage = "https://www.riverbankcomputing.com/software/pyqtwebengine/"
dependencies = ["PyQt6 (>=6.2.0)"]
license = "GPL-3.0-only"
license-files = ["LICENSE"]
[[project.authors]]
name = "Riverbank Computing Limited"
email = "info@riverbankcomputing.com"
# Specify a PyQt-based project.
[tool.sip]
project-factory = "pyqtbuild:PyQtProject"
# Configure the project.
[tool.sip.project]
tag-prefix = "QtWebEngine"
# Define and configure each set of bindings.
[tool.sip.bindings.QtWebEngineCore]
qmake-QT = ["webenginecore"]
[tool.sip.bindings.QtWebEngineQuick]
qmake-QT = ["webenginequick"]
[tool.sip.bindings.QtWebEngineWidgets]
qmake-QT = ["webenginewidgets"]
|