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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
Metadata-Version: 2.1
Name: sphinx_qt_documentation
Version: 0.4.1
Summary: Plugin for proper resolve intersphinx references for Qt elements
Home-page: https://github.com/Czaki/sphinx-qt-documentation
Author: Grzegorz Bokota
Author-email: bokota@gmail.com
License: BSD-3-Clause
Keywords: Sphinx,Qt,PyQt5,PySide2,PyQt6,PySide6
Platform: Linux
Platform: Windows
Platform: MacOs
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: lint
Provides-Extra: test
License-File: LICENSE.txt
# Sphinx Qt documentation
[](https://results.pre-commit.ci/latest/github/Czaki/sphinx-qt-documentation/master)
[](https://github.com/Czaki/sphinx-qt-documentation/actions/workflows/test.yaml)
[](https://badge.fury.io/py/sphinx-qt-documentation)
[](https://github.com/psf/black)
This is plugin to add cross-link to qt documentation for python code created with PyQt5 or PySide2.
Currently, it supports `qtpy`, `Qt.py` wrappers and `PyQt5`, `PySide2`, `PyQt6` and`PySide6`.
This extension provides one configuration option:
`qt_documentation` with possible values:
* PyQt5 - linking to PyQt documentation on https://www.riverbankcomputing.com/static/Docs/PyQt5/api/ (incomplete)
* Qt5 - linking to Qt5 documentation on "https://doc.qt.io/qt-5/" (default)
* PySide2 - linking to PySide6 documentation on "https://doc.qt.io/qtforpython-5/"
* PyQt6 - linking to PyQt documentation on https://www.riverbankcomputing.com/static/Docs/PyQt6/api/ (incomplete)
* Qt6 - linking to Qt5 documentation on "https://doc.qt.io/qt-6/"
* PySide6 - linking to PySide6 documentation on "https://doc.qt.io/qtforpython/PySide6/"
For default this extension use `inv` file from PyQt5 to resolve objects.
to overwrite this behaviour set another url for `intersphinx_mapping[PyQt5]` ex.:
```python
intersphinx_mapping = {...
"PyQt5": (custom_url, None),
...}
```
This package currently does not support linking PyQt5 documentation using PySide2 `.inv` file
|