Initial commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,139 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: PySide6
|
||||
Version: 6.11.0
|
||||
Summary: Python bindings for the Qt cross-platform application and UI framework
|
||||
Author-email: Qt for Python Team <pyside@qt-project.org>
|
||||
License: LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
Project-URL: Homepage, https://pyside.org
|
||||
Project-URL: Documentation, https://doc.qt.io/qtforpython
|
||||
Project-URL: Repository, https://code.qt.io/cgit/pyside/pyside-setup.git/
|
||||
Project-URL: Changelog, https://code.qt.io/cgit/pyside/pyside-setup.git/tree/doc/changelogs
|
||||
Project-URL: Tracker, https://qt-project.atlassian.net/browse/PYSIDE
|
||||
Keywords: Qt
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Environment :: Console
|
||||
Classifier: Environment :: MacOS X
|
||||
Classifier: Environment :: X11 Applications :: Qt
|
||||
Classifier: Environment :: Win32 (MS Windows)
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Operating System :: MacOS :: MacOS X
|
||||
Classifier: Operating System :: POSIX
|
||||
Classifier: Operating System :: POSIX :: Linux
|
||||
Classifier: Operating System :: Microsoft
|
||||
Classifier: Operating System :: Microsoft :: Windows
|
||||
Classifier: Programming Language :: C++
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Classifier: Programming Language :: Python :: 3.13
|
||||
Classifier: Programming Language :: Python :: 3.14
|
||||
Classifier: Topic :: Database
|
||||
Classifier: Topic :: Software Development
|
||||
Classifier: Topic :: Software Development :: Code Generators
|
||||
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
||||
Classifier: Topic :: Software Development :: User Interfaces
|
||||
Classifier: Topic :: Software Development :: Widget Sets
|
||||
Requires-Python: <3.15,>=3.10
|
||||
Description-Content-Type: text/markdown
|
||||
License-File: LicenseRef-Qt-Commercial.txt
|
||||
Requires-Dist: shiboken6==6.11.0
|
||||
Requires-Dist: PySide6_Essentials==6.11.0
|
||||
Requires-Dist: PySide6_Addons==6.11.0
|
||||
Dynamic: license-file
|
||||
|
||||
# PySide6
|
||||
|
||||
### Introduction
|
||||
|
||||
**Important:** for Qt5 compatibility, check [PySide2](https://pypi.org/project/PySide2)
|
||||
|
||||
PySide6 is the official Python module from the
|
||||
[Qt for Python project](https://wiki.qt.io/Qt_for_Python),
|
||||
which provides access to the complete Qt 6.0+ framework.
|
||||
|
||||
The Qt for Python project is developed in the open, with all facilities you'd expect
|
||||
from any modern OSS project such as all code in a git repository and an open
|
||||
design process. We welcome any contribution conforming to the
|
||||
[Qt Contribution Agreement](https://www.qt.io/contributionagreement/).
|
||||
|
||||
### Installation
|
||||
|
||||
Since the release of the [Technical Preview](https://blog.qt.io/blog/2018/06/13/qt-python-5-11-released/)
|
||||
it is possible to install via `pip`, both from Qt's servers
|
||||
and [PyPi](https://pypi.org/project/PySide6/):
|
||||
|
||||
```
|
||||
pip install PySide6
|
||||
```
|
||||
|
||||
> Please note: this wheel is an alias to other two wheels
|
||||
> [PySide6_Essentials](https://pypi.org/project/PySide6_Essentials) and
|
||||
> [PySide6_Addons](https://pypi.org/project/PySide6_Addons), which contains
|
||||
> a predefined list of Qt Modules.
|
||||
|
||||
#### Dependencies
|
||||
|
||||
PySide6 versions following 6.0 use a C++ parser based on
|
||||
[Clang](http://clang.org/). The Clang library (C-bindings), version 13.0 or
|
||||
higher is required for building. Prebuilt versions of it can be downloaded from
|
||||
[download.qt.io](https://download.qt.io/development_releases/prebuilt/libclang/).
|
||||
|
||||
After unpacking the archive, set the environment variable *LLVM_INSTALL_DIR* to
|
||||
point to the folder containing the *include* and *lib* directories of Clang:
|
||||
|
||||
```
|
||||
7z x .../libclang-release_100-linux-Rhel7.2-gcc5.3-x86_64-clazy.7z
|
||||
export LLVM_INSTALL_DIR=$PWD/libclang
|
||||
```
|
||||
|
||||
On Windows:
|
||||
|
||||
```
|
||||
7z x .../libclang-release_100-windows-vs2015_64-clazy.7z
|
||||
SET LLVM_INSTALL_DIR=%CD%\libclang
|
||||
```
|
||||
|
||||
### Building from source
|
||||
|
||||
For building PySide6 from scratch, please read about
|
||||
[getting started](https://doc.qt.io/qtforpython/gettingstarted.html).
|
||||
This process will include getting the code:
|
||||
|
||||
```
|
||||
git clone https://code.qt.io/pyside/pyside-setup
|
||||
cd pyside-setup
|
||||
git checkout 6.x # if a specific version is needed
|
||||
```
|
||||
|
||||
then install the dependencies, and following the instructions per platform.
|
||||
A common build command will look like:
|
||||
|
||||
```
|
||||
python setup.py install --qtpaths=/path/to/bin/qtpaths6 --parallel=8 --build-tests
|
||||
```
|
||||
|
||||
You can obtain more information about the options to build PySide and Shiboken
|
||||
in [our wiki](https://wiki.qt.io/Qt_for_Python/).
|
||||
|
||||
### Documentation and Bugs
|
||||
|
||||
You can find more information about the PySide6 module API in the
|
||||
[official Qt for Python documentation](https://doc.qt.io/qtforpython/).
|
||||
|
||||
If you come across any issue, please file a bug report at our
|
||||
[JIRA tracker](https://qt-project.atlassian.net/browse/PYSIDE) following
|
||||
our [guidelines](https://wiki.qt.io/Qt_for_Python/Reporting_Bugs).
|
||||
|
||||
### Community
|
||||
|
||||
Check our channels on IRC (Libera), Telegram, Gitter, Matrix, and mailing list,
|
||||
and [join our community](https://wiki.qt.io/Qt_for_Python#Community)!
|
||||
|
||||
### Licensing
|
||||
|
||||
PySide6 is available under both Open Source (LGPLv3 or GPLv2 or GPLv3) and commercial
|
||||
license. Using PyPi is the recommended installation source, because the
|
||||
content of the wheels is valid for both cases. For more information, refer to
|
||||
the [Qt Licensing page](https://www.qt.io/licensing/).
|
||||
@@ -0,0 +1,74 @@
|
||||
PySide6/Qt3DAnimation.pyi,sha256=fIkF1Uo_z78IqOtCjMQPhxQauHmbM2f_4eKIImNSleo,31429
|
||||
PySide6/Qt3DCore.pyi,sha256=O5ExVuRntW7PPv7GsF1vpCFTng8X5iW5aQkreNnkfhg,36167
|
||||
PySide6/Qt3DExtras.pyi,sha256=gDTTlGGWTiZNVaukXwVHCfzLxhnaSMHa9tNCdV0T9rA,77003
|
||||
PySide6/Qt3DInput.pyi,sha256=m6CG-PH4MOpgjswlaEN15t3uf8y67qcv_GmNfuFCCXc,24167
|
||||
PySide6/Qt3DLogic.pyi,sha256=W48CZYrAzqL_549x2wfRAvJ-jY4x_3zQ6GYyE-iW17Q,1031
|
||||
PySide6/Qt3DRender.pyi,sha256=E6oe3ZopuX0WC5AYySJF3LNHRABEacfUBNyIQgDW7n8,150193
|
||||
PySide6/QtAxContainer.pyi,sha256=Nn-xVNoMzKpFSzHWyCUkCKEj1IMurlgYCV5nuTggulw,10444
|
||||
PySide6/QtBluetooth.pyi,sha256=V8qUqmIAbgrJWfdyBmU8fri4YHZVbnshnIMLAIiyn0s,74277
|
||||
PySide6/QtCanvasPainter.pyi,sha256=rmfcq0zQibba0ygOvCRJCO7nVDnLb4q6i4y_OS7a0mc,45666
|
||||
PySide6/QtCharts.pyi,sha256=T1bIC4jAkWgBU3eOBHyeoCLuHVHyyFjlSAEi_s3TzHg,108883
|
||||
PySide6/QtConcurrent.pyi,sha256=rcto7nZt_pery1jFoCl5amllkBpM2jiwTdP9TAQQ8ec,3936
|
||||
PySide6/QtCore.pyi,sha256=S131aEOmERYv6Xi0xywAFlnh4o_LHVKvLsSrEp7Hn2E,566411
|
||||
PySide6/QtDBus.pyi,sha256=CcG97JyPULINVhlGa7AvPmwH0lLjkNfQPLuj8QiqM2o,34624
|
||||
PySide6/QtDataVisualization.pyi,sha256=1Qtjuofj-kxh5euTFJQsu3cwSUvB1cY6KCcYTACIpMc,116272
|
||||
PySide6/QtDesigner.pyi,sha256=GaW07kUkuC-KMl1HraQilxeO9oQQgIu5rlMNmgPds-4,30537
|
||||
PySide6/QtGraphs.pyi,sha256=dmegIrvJvT2skLEHk47djKRaMjaobEUNHk1bEAS1moQ,170562
|
||||
PySide6/QtGraphsWidgets.pyi,sha256=8cOkMUUQ7MrDkxiZcsfjEAQYY6A5mP1eHfGEcA-h5-c,21004
|
||||
PySide6/QtGui.pyi,sha256=SQri4TdcxR5FR1HXt971Ggt_3_9jV9K0-Pa0y8a0TcI,641041
|
||||
PySide6/QtHelp.pyi,sha256=7XfJ6DRLCq2nOkjXMiGqh_PdTBGG2QT2It8ukXhwA18,16973
|
||||
PySide6/QtHttpServer.pyi,sha256=tjJyTcuoEmi5etnRwkGmPdyMYV0799fKWrenQqNUe3k,16349
|
||||
PySide6/QtLocation.pyi,sha256=49DL24c3kvok81HdCM4S2Z23HRT2bXJyHPUn_9YRUq4,58348
|
||||
PySide6/QtMultimedia.pyi,sha256=EW-H-h_mF-DbVMOkzodSsRRudc_3RSiBRkjkZWuG8oA,90197
|
||||
PySide6/QtMultimediaWidgets.pyi,sha256=0Wa5l0ifnmFlLqkHV5gF-SQQydH9FVIa7GhIpHycTFU,3403
|
||||
PySide6/QtNetwork.pyi,sha256=-zYcfrYJCl670YrpahRWUujWtSkI9HdFlBTBA3672sg,150421
|
||||
PySide6/QtNetworkAuth.pyi,sha256=FQPZYVXn2qFSeXXUPYKArZoSciHTVpSp297jVsPuDZU,28093
|
||||
PySide6/QtNfc.pyi,sha256=WFTPRhqa7w2x92a4YTLM5xkxjocuVZfOSXXYdOd0E2A,18762
|
||||
PySide6/QtOpenGL.pyi,sha256=s0jlLwrzgEjY-RvRkrZKqRe210QteYfagum3xipal8c,1220683
|
||||
PySide6/QtOpenGLWidgets.pyi,sha256=NdPGXya5ghc0V9VMZT9s2gbtMLgK0hebmSK7JnxGs70,3341
|
||||
PySide6/QtPdf.pyi,sha256=01EQlRqW6XKzmfdiZeVZmFPpnczWICBDKwEtQ_e6k80,16510
|
||||
PySide6/QtPdfWidgets.pyi,sha256=Fe65MNFPMPAOzr_XrmiQ3DfaYwrvXpJyGWlXegNRCxQ,5377
|
||||
PySide6/QtPositioning.pyi,sha256=6RA_1YB1lX8x-tNdTV4somG-LU64BUQ3eqRST68dIX0,39065
|
||||
PySide6/QtPrintSupport.pyi,sha256=WfmeNd9qiBCBcBOw5DHtns2K7V4XTksicAyLpi-_sS8,17399
|
||||
PySide6/QtQml.pyi,sha256=4GWbxqqCYkUNgWvmYIYtzJp7s8cNilQBjiiCTsfHZf8,53361
|
||||
PySide6/QtQuick.pyi,sha256=36aZZ95YeTTyV1GVSNkDFy4X6FHyuaspIm1gGUvrang,92167
|
||||
PySide6/QtQuick3D.pyi,sha256=hwnsfGigflHAKT0edSuxcdvAmsDoODtGAgFIM7Gt-oE,14670
|
||||
PySide6/QtQuickControls2.pyi,sha256=KxKppKw2w1EQa32pW3G-LOES6fdqww-SeSAvFBeaSuE,1413
|
||||
PySide6/QtQuickTest.pyi,sha256=hyri5dwgR1aptC9dyPka7Y6wbOFskhNDlTDtqW98Qx4,717
|
||||
PySide6/QtQuickWidgets.pyi,sha256=p1C7bq0-9NA6qWBVB8V-zVQEuPk4orpkMUO6nbbd0MM,5574
|
||||
PySide6/QtRemoteObjects.pyi,sha256=hAUh2ohswjoJLqyUu35sG0JchvOceXpFRkB4Zx_I_b4,19882
|
||||
PySide6/QtScxml.pyi,sha256=fWRn13za8iMwC5eRqIjrd0G6_IgnMWVQCdkmg-wU86Y,17885
|
||||
PySide6/QtSensors.pyi,sha256=TrJpKQzJmOB_0ZaMvRps5OlGnZTbl2IZgvjP6q0-xBg,28601
|
||||
PySide6/QtSerialBus.pyi,sha256=Hd2mzkeK4XyJt5TgrCkcLJMUcjiYrY_YbcUSSA2E4o0,38429
|
||||
PySide6/QtSerialPort.pyi,sha256=D1vzxIt8dfoFqr8m2Nbl67NsIQ8hHEbMo8feETqvogY,9728
|
||||
PySide6/QtSpatialAudio.pyi,sha256=ghvdFbCZGT-FlAK383sq6z6YESQeK72XIUY2p7JS6Eo,12447
|
||||
PySide6/QtSql.pyi,sha256=j1p3AOTt_nv4oD43IyAei64TS3DFe7zJQUoeT7LjoiY,34957
|
||||
PySide6/QtStateMachine.pyi,sha256=TzYwJqEYESRYqWW4ZYryvV4Yck2SA6xwkRE14s17sAk,17348
|
||||
PySide6/QtSvg.pyi,sha256=dQMj7typhR-u40cwc05SojrKCVmqCs5OOkipNIPuN2w,6945
|
||||
PySide6/QtSvgWidgets.pyi,sha256=FgdQ8BdvZLI4u3f8HR-AwAWXz0BOQKfbf7pmoETvmso,2635
|
||||
PySide6/QtTest.pyi,sha256=UGRLNB1H9SkyBI1Mqf_2kvTsg-xwP8lYE7uh3ovZK6U,22471
|
||||
PySide6/QtTextToSpeech.pyi,sha256=-KqQ9CFGk1nX_JEuNSVMpVtHeGS2enrgibOW6Kkl_78,10032
|
||||
PySide6/QtUiTools.pyi,sha256=RnC-IOzIXZ-BP2qBNmCwRbor6zqYa4mKsI0it2sRt38,2400
|
||||
PySide6/QtWebChannel.pyi,sha256=mlMDgfnOyVRHogLES2eaQDU9VanRMgLvpnM2WCr-84o,1996
|
||||
PySide6/QtWebEngineCore.pyi,sha256=FEFEgd2FCiCzfOuViM3tpuBjANRoSD2EVEpe19kc1hE,74126
|
||||
PySide6/QtWebEngineQuick.pyi,sha256=2aQGyj6PlLG9NZTMAcf6Jt-oUS10-at_hCtKMgYHUcg,9202
|
||||
PySide6/QtWebEngineWidgets.pyi,sha256=G3TBn5jyxoG3DRyO8S4k1CQFa4sQNK8L03W4oxUz_iw,6456
|
||||
PySide6/QtWebSockets.pyi,sha256=_rNctCB2H5I_OXRiWsVc9KdRBQDSxgFeQa8Pj-2c5pA,12979
|
||||
PySide6/QtWebView.pyi,sha256=LWCdSJzv1_D5IccPCRD07eN5f77H4II0EtwYocVClrY,4695
|
||||
PySide6/QtWidgets.pyi,sha256=8Q0-3Pcqez3hQzq6uVZEPCeNnddzeRfTuEggocE0Ysc,614200
|
||||
PySide6/QtXml.pyi,sha256=BS8Arv5776P2hvVsce9l3rIHa2s_UF_RyXISJN_vfEE,20620
|
||||
PySide6/__feature__.pyi,sha256=wCNnFjC4SbeZe6-z1k8gEpQx17YRQmQ9eowDm-dKKoI,256
|
||||
PySide6/__init__.py,sha256=gCNTF5OOpUgnUl7NDJITTrvCf6tjowB2Z43PrbT2Dn4,6400
|
||||
PySide6/__pycache__/__init__.cpython-310.pyc,,
|
||||
PySide6/__pycache__/_config.cpython-310.pyc,,
|
||||
PySide6/__pycache__/_git_pyside_version.cpython-310.pyc,,
|
||||
PySide6/_config.py,sha256=oNyts_gI-5XLIsgvFEwcTnxJj_sFS0n-OnYk5v7RGsE,866
|
||||
PySide6/_git_pyside_version.py,sha256=vSGbLasL2YpgItkLIxFHsW1i1u46cjB4i3rQVg3aOB0,713
|
||||
PySide6/py.typed,sha256=w50UHeePmk6OQiSwx3368SpUCtvFYs7rmEr2NKaRHaU,34
|
||||
pyside6-6.11.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
pyside6-6.11.0.dist-info/METADATA,sha256=_QMCuCuT29_eUlb5vS28ipkWjUg87GLB7sLqbFIRjXw,5474
|
||||
pyside6-6.11.0.dist-info/RECORD,,
|
||||
pyside6-6.11.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
pyside6-6.11.0.dist-info/WHEEL,sha256=lSbI0pw5WGCRAd_tkOKggofXO8r1D8pG-pe5CjECgOQ,100
|
||||
pyside6-6.11.0.dist-info/licenses/LicenseRef-Qt-Commercial.txt,sha256=T1R2OsD-Kr2Pf42P43CpSgjr-EeGqguRBFvWYo3rCKM,470
|
||||
pyside6-6.11.0.dist-info/top_level.txt,sha256=cji7M9JFx46lk3BlplB_ExmkhLqoPhGzDsl6xg0h6J8,23
|
||||
@@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (78.1.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp310-abi3-win_amd64
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
Licensees holding valid commercial Qt licenses may use this software in
|
||||
accordance with the the terms contained in a written agreement between
|
||||
you and The Qt Company. Alternatively, the terms and conditions that were
|
||||
accepted by the licensee when buying and/or downloading the
|
||||
software do apply.
|
||||
|
||||
For the latest licensing terms and conditions, see https://www.qt.io/terms-conditions.
|
||||
For further information use the contact form at https://www.qt.io/contact-us.
|
||||
@@ -0,0 +1,2 @@
|
||||
PySide6
|
||||
PySide6/QtCore
|
||||
Reference in New Issue
Block a user