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
|
# SPDX-License-Identifier: BSD-2-Clause
# Copyright (c) 2024 Phil Thompson <phil@riverbankcomputing.com>
from ..abstract_package import AbstractPackage
from ..qt_metadata import VersionedMetadata
# The Qt meta-data for this package.
_QT_METADATA = {
'QtCharts': (
# It's likely that the QML library was required from the start.
VersionedMetadata(version=(6, 5, 0),
lib_deps={'': ('QtChartsQml', )},
lgpl=False),
VersionedMetadata(version=(6, 1, 0), lgpl=False))
}
class PyQt6_Charts(AbstractPackage):
""" The PyQt6-Charts package. """
def get_qt_metadata(self):
""" Return the package-specific meta-data describing the parts of Qt to
install.
"""
return _QT_METADATA
|