PySide6-QtAds 4.3.1.5__cp39-abi3-win_amd64.whl → 4.4.0.1__cp39-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of PySide6-QtAds might be problematic. Click here for more details.
- PySide6QtAds/PySide6QtAds.pyd +0 -0
- pyside6_qtads-4.4.0.1.dist-info/METADATA +79 -0
- pyside6_qtads-4.4.0.1.dist-info/RECORD +9 -0
- {pyside6_qtads-4.3.1.5.dist-info → pyside6_qtads-4.4.0.1.dist-info}/WHEEL +1 -1
- pyside6_qtads-4.3.1.5.dist-info/METADATA +0 -55
- pyside6_qtads-4.3.1.5.dist-info/RECORD +0 -9
- /pyside6_qtads-4.3.1.5.dist-info/licenses/LICENSE → /pyside6_qtads-4.4.0.1.dist-info/licenses/LICENSE.txt +0 -0
- {pyside6_qtads-4.3.1.5.dist-info → pyside6_qtads-4.4.0.1.dist-info}/top_level.txt +0 -0
PySide6QtAds/PySide6QtAds.pyd
CHANGED
|
Binary file
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PySide6-QtAds
|
|
3
|
+
Version: 4.4.0.1
|
|
4
|
+
Summary: PySide6 bindings to Qt Advanced Docking System
|
|
5
|
+
License: PySide6-QtAds is licensed under GNU LGPL v2.1.
|
|
6
|
+
|
|
7
|
+
Based on PySide6 binding work by CJ Niemira via https://github.com/cniemira/pyside6_qtads
|
|
8
|
+
|
|
9
|
+
MIT License
|
|
10
|
+
|
|
11
|
+
Copyright (c) 2022 cniemira
|
|
12
|
+
|
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
15
|
+
in the Software without restriction, including without limitation the rights
|
|
16
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
17
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
18
|
+
furnished to do so, subject to the following conditions:
|
|
19
|
+
|
|
20
|
+
The above copyright notice and this permission notice shall be included in all
|
|
21
|
+
copies or substantial portions of the Software.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
27
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
29
|
+
SOFTWARE.
|
|
30
|
+
|
|
31
|
+
With bindings.xml improvements via https://github.com/metgem/PySide2Ads also under LGPL v2.1
|
|
32
|
+
|
|
33
|
+
Project-URL: Homepage, https://github.com/mborgerson/pyside6_qtads/
|
|
34
|
+
Classifier: Development Status :: 3 - Alpha
|
|
35
|
+
Classifier: Intended Audience :: Developers
|
|
36
|
+
Classifier: Programming Language :: Python :: 3
|
|
37
|
+
Requires-Python: >=3.9
|
|
38
|
+
Description-Content-Type: text/markdown
|
|
39
|
+
License-File: LICENSE.txt
|
|
40
|
+
Requires-Dist: PySide6-Essentials==6.9.1
|
|
41
|
+
Requires-Dist: shiboken6==6.9.1
|
|
42
|
+
Dynamic: license-file
|
|
43
|
+
Dynamic: requires-dist
|
|
44
|
+
|
|
45
|
+
# PySide6-QtAds
|
|
46
|
+
[](https://pypi.python.org/pypi/Pyside6-QtAds/)
|
|
47
|
+
[](https://github.com/mborgerson/pyside6_qtads/blob/main/LICENSE)
|
|
48
|
+

|
|
49
|
+
|
|
50
|
+
Python/PySide6 bindings to the [Qt Advanced Docking System](https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System) library.
|
|
51
|
+
|
|
52
|
+
Pre-built wheels are available for Windows, macOS, and Linux. You can install with:
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
pip install PySide6-QtAds
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
You may also build from source. Example build from source on Ubuntu 24.04:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
# Install Qt (for example, using aqtinstall)
|
|
62
|
+
pip install aqtinstall
|
|
63
|
+
aqt install-qt linux desktop 6.9.0 --outputdir qt
|
|
64
|
+
|
|
65
|
+
# Build PySide6-QtAds
|
|
66
|
+
LD_LIBRARY_PATH=$PWD/qt/6.9.0/gcc_64/lib \
|
|
67
|
+
CMAKE_PREFIX_PATH=$PWD/qt/6.9.0/gcc_64/lib/cmake/ \
|
|
68
|
+
PIP_EXTRA_INDEX_URL=https://download.qt.io/official_releases/QtForPython/ \
|
|
69
|
+
pip install -v .
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Note: `shiboken6-generator` is required when building from source. It will be downloaded automatically in the command above from Qt's package index, as it is not available on PyPI.
|
|
73
|
+
|
|
74
|
+
# Examples
|
|
75
|
+
https://github.com/mborgerson/Qt-Advanced-Docking-System/tree/pyside6
|
|
76
|
+
|
|
77
|
+
# Credits
|
|
78
|
+
- Original PySide6 binding work by CJ Niemira via https://github.com/cniemira/pyside6_qtads
|
|
79
|
+
- With bindings.xml improvements via https://github.com/metgem/PySide2Ads
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
PySide6QtAds/PySide6QtAds.pyd,sha256=ClP7WTTAduYypaXh7nt5JCQZLY8YGq72avZX4yX1B-A,1034240
|
|
2
|
+
PySide6QtAds/__init__.py,sha256=2KrxGIH43WF4n9FRb1Bki0URdZWE_VSpFIdL-i86BcU,2734
|
|
3
|
+
PySide6QtAds/license/ads/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
|
4
|
+
PySide6QtAds/license/ads/gnu-lgpl-v2.1.md,sha256=C-0Gf5TySJtzRUtzu244wQe1tTpNqkLsRFzRCEBbSc4,26314
|
|
5
|
+
pyside6_qtads-4.4.0.1.dist-info/licenses/LICENSE.txt,sha256=kC8VwLJC7i2S5yuEttBnWw2Qv3y6mfXrQ9BaLQZSn-I,1315
|
|
6
|
+
pyside6_qtads-4.4.0.1.dist-info/METADATA,sha256=-Q3J79hg6IKFz5M8IcY7nz5u9aCsEmIoPtx3zk1SKiI,3578
|
|
7
|
+
pyside6_qtads-4.4.0.1.dist-info/WHEEL,sha256=DbN7S3h4YQA-y-B21gLEqncqJu4AuNAIA-Y5RA5Bkg0,99
|
|
8
|
+
pyside6_qtads-4.4.0.1.dist-info/top_level.txt,sha256=IQ5cv0px-rZBbUYIVibaL8lO5FDW4SqSM3_ByYUKc1E,14
|
|
9
|
+
pyside6_qtads-4.4.0.1.dist-info/RECORD,,
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: PySide6-QtAds
|
|
3
|
-
Version: 4.3.1.5
|
|
4
|
-
Summary: PySide6 bindings to Qt Advanced Docking System
|
|
5
|
-
Home-page: https://github.com/mborgerson/pyside6_qtads/
|
|
6
|
-
License: LGPL v2.1
|
|
7
|
-
Keywords: PySide6,PySide,Qt,Advanced-Docking-System
|
|
8
|
-
Platform: any
|
|
9
|
-
Classifier: Development Status :: 3 - Alpha
|
|
10
|
-
Classifier: Intended Audience :: Developers
|
|
11
|
-
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
|
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Requires-Python: >=3.8
|
|
14
|
-
Description-Content-Type: text/markdown
|
|
15
|
-
License-File: LICENSE
|
|
16
|
-
Requires-Dist: PySide6-Essentials==6.9.0
|
|
17
|
-
Requires-Dist: shiboken6==6.9.0
|
|
18
|
-
Dynamic: license-file
|
|
19
|
-
Dynamic: requires-dist
|
|
20
|
-
|
|
21
|
-
# PySide6-QtAds
|
|
22
|
-
[](https://pypi.python.org/pypi/Pyside6-QtAds/)
|
|
23
|
-
[](https://github.com/mborgerson/pyside6_qtads/blob/main/LICENSE)
|
|
24
|
-

|
|
25
|
-
|
|
26
|
-
Python/PySide6 bindings to the [Qt Advanced Docking System](https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System) library.
|
|
27
|
-
|
|
28
|
-
Pre-built wheels are available for Windows, macOS, and Linux. You can install with:
|
|
29
|
-
|
|
30
|
-
```
|
|
31
|
-
pip install PySide6-QtAds
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
You may also build from source. Example build from source on Ubuntu 24.04:
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
# Install Qt (for example, using aqtinstall)
|
|
38
|
-
pip install aqtinstall
|
|
39
|
-
aqt install-qt linux desktop 6.9.0 --outputdir qt
|
|
40
|
-
|
|
41
|
-
# Build PySide6-QtAds
|
|
42
|
-
LD_LIBRARY_PATH=$PWD/qt/6.9.0/gcc_64/lib \
|
|
43
|
-
CMAKE_PREFIX_PATH=$PWD/qt/6.9.0/gcc_64/lib/cmake/ \
|
|
44
|
-
PIP_EXTRA_INDEX_URL=https://download.qt.io/official_releases/QtForPython/ \
|
|
45
|
-
pip install -v .
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
Note: `shiboken6-generator` is required when building from source. It will be downloaded automatically in the command above from Qt's package index, as it is not available on PyPI.
|
|
49
|
-
|
|
50
|
-
# Examples
|
|
51
|
-
https://github.com/mborgerson/Qt-Advanced-Docking-System/tree/pyside6
|
|
52
|
-
|
|
53
|
-
# Credits
|
|
54
|
-
- Original PySide6 binding work by CJ Niemira via https://github.com/cniemira/pyside6_qtads
|
|
55
|
-
- With bindings.xml improvements via https://github.com/metgem/PySide2Ads
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
PySide6QtAds/PySide6QtAds.pyd,sha256=NXrTx4SWXVucqSDQ_C_YuOot_TGZ91zDDGAT0ARpSNM,1012224
|
|
2
|
-
PySide6QtAds/__init__.py,sha256=2KrxGIH43WF4n9FRb1Bki0URdZWE_VSpFIdL-i86BcU,2734
|
|
3
|
-
PySide6QtAds/license/ads/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
|
4
|
-
PySide6QtAds/license/ads/gnu-lgpl-v2.1.md,sha256=C-0Gf5TySJtzRUtzu244wQe1tTpNqkLsRFzRCEBbSc4,26314
|
|
5
|
-
pyside6_qtads-4.3.1.5.dist-info/licenses/LICENSE,sha256=kC8VwLJC7i2S5yuEttBnWw2Qv3y6mfXrQ9BaLQZSn-I,1315
|
|
6
|
-
pyside6_qtads-4.3.1.5.dist-info/METADATA,sha256=G2tcouNsKxSt-qjnLdmVEOPAp2oaAn7zTnVjVSaZSec,2167
|
|
7
|
-
pyside6_qtads-4.3.1.5.dist-info/WHEEL,sha256=pmAMBLlqV2u9yGvBrQuYT9C8FgKXG1PEMSKEa5h-tMM,99
|
|
8
|
-
pyside6_qtads-4.3.1.5.dist-info/top_level.txt,sha256=IQ5cv0px-rZBbUYIVibaL8lO5FDW4SqSM3_ByYUKc1E,14
|
|
9
|
-
pyside6_qtads-4.3.1.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|