gi 0.8.1__py3-none-any.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.
- gi-0.8.1.dist-info/METADATA +55 -0
- gi-0.8.1.dist-info/RECORD +3 -0
- gi-0.8.1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gi
|
|
3
|
+
Version: 0.8.1
|
|
4
|
+
Summary: Meta-package for ginext — GObject-introspection bindings for free-threaded Python (imports as `ginext`)
|
|
5
|
+
Project-URL: Homepage, https://github.com/jdahlin/ginext
|
|
6
|
+
Project-URL: Repository, https://github.com/jdahlin/ginext
|
|
7
|
+
Project-URL: Issues, https://github.com/jdahlin/ginext/issues
|
|
8
|
+
Author-email: Johan Dahlin <jdahlin@gmail.com>
|
|
9
|
+
License-Expression: LGPL-2.1-or-later
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
+
Requires-Python: >=3.14
|
|
15
|
+
Requires-Dist: ginext-core>=0.8.1
|
|
16
|
+
Provides-Extra: all
|
|
17
|
+
Requires-Dist: ginext-core>=0.8.1; extra == 'all'
|
|
18
|
+
Requires-Dist: ginext-gio>=0.8.1; extra == 'all'
|
|
19
|
+
Requires-Dist: ginext-gst>=0.8.1; extra == 'all'
|
|
20
|
+
Requires-Dist: ginext-gtk>=0.8.1; extra == 'all'
|
|
21
|
+
Requires-Dist: ginext-libsoup>=0.8.1; extra == 'all'
|
|
22
|
+
Provides-Extra: compat
|
|
23
|
+
Requires-Dist: ginext-core>=0.8.1; extra == 'compat'
|
|
24
|
+
Requires-Dist: ginext-gi-compat>=0.8.1; extra == 'compat'
|
|
25
|
+
Provides-Extra: gio
|
|
26
|
+
Requires-Dist: ginext-core>=0.8.1; extra == 'gio'
|
|
27
|
+
Requires-Dist: ginext-gio>=0.8.1; extra == 'gio'
|
|
28
|
+
Provides-Extra: gst
|
|
29
|
+
Requires-Dist: ginext-core>=0.8.1; extra == 'gst'
|
|
30
|
+
Requires-Dist: ginext-gst>=0.8.1; extra == 'gst'
|
|
31
|
+
Provides-Extra: gtk
|
|
32
|
+
Requires-Dist: ginext-core>=0.8.1; extra == 'gtk'
|
|
33
|
+
Requires-Dist: ginext-gtk>=0.8.1; extra == 'gtk'
|
|
34
|
+
Provides-Extra: libsoup
|
|
35
|
+
Requires-Dist: ginext-core>=0.8.1; extra == 'libsoup'
|
|
36
|
+
Requires-Dist: ginext-libsoup>=0.8.1; extra == 'libsoup'
|
|
37
|
+
Provides-Extra: stubs
|
|
38
|
+
Requires-Dist: ginext-core>=0.8.1; extra == 'stubs'
|
|
39
|
+
Requires-Dist: ginext-stubs>=0.8.1; extra == 'stubs'
|
|
40
|
+
Description-Content-Type: text/markdown
|
|
41
|
+
|
|
42
|
+
# gi
|
|
43
|
+
|
|
44
|
+
Meta-package for [ginext](https://github.com/jdahlin/ginext) — fast, lazy,
|
|
45
|
+
JIT-compiled GObject-introspection bindings for free-threaded Python.
|
|
46
|
+
|
|
47
|
+
```sh
|
|
48
|
+
pip install gi # core (import as `ginext`)
|
|
49
|
+
pip install gi[gtk] # + GTK/Gdk/Pango/Gsk
|
|
50
|
+
pip install gi[all] # all overlays
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
`pip install gi` installs `ginext-core`; the code imports as `ginext`
|
|
54
|
+
(`from ginext import Gtk`). This distribution ships no `gi` module and does not
|
|
55
|
+
conflict with PyGObject.
|
gi-0.8.1.dist-info/WHEEL
ADDED