gi 0.8.1__tar.gz
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/.gitignore +57 -0
- gi-0.8.1/PKG-INFO +55 -0
- gi-0.8.1/README.md +14 -0
- gi-0.8.1/pyproject.toml +50 -0
gi-0.8.1/.gitignore
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.agents
|
|
2
|
+
.codex
|
|
3
|
+
history
|
|
4
|
+
|
|
5
|
+
# Generated mkdocs API reference (produced by `make api-docs` and in CI) + build.
|
|
6
|
+
/docs/api/
|
|
7
|
+
/site/
|
|
8
|
+
|
|
9
|
+
apps
|
|
10
|
+
.vscode
|
|
11
|
+
.idea/
|
|
12
|
+
build/
|
|
13
|
+
build-*/
|
|
14
|
+
venv*/
|
|
15
|
+
__pycache__
|
|
16
|
+
**/__pycache__
|
|
17
|
+
*.pyc
|
|
18
|
+
*.pyo
|
|
19
|
+
*.so
|
|
20
|
+
*.egg-info/
|
|
21
|
+
dist/
|
|
22
|
+
wheelhouse/
|
|
23
|
+
stubs/
|
|
24
|
+
# Generated stub files — run `make stubs` or `uv run python -m ginext_stubgen install`
|
|
25
|
+
packages/ginext-stubs/ginext-stubs/*.pyi
|
|
26
|
+
packages/ginext-stubs/.stub-generated.stamp
|
|
27
|
+
# mypy incremental cache (per-package dirs; see ci/run-mypy.sh)
|
|
28
|
+
.mypy_cache/
|
|
29
|
+
**/.mypy_cache/
|
|
30
|
+
memory/
|
|
31
|
+
pygobject
|
|
32
|
+
!src/ginext/tests/pygobject/
|
|
33
|
+
!src/ginext/tests/pygobject/**
|
|
34
|
+
src/ginext/tests/pygobject/.ruff_cache/
|
|
35
|
+
src/ginext/tests/pygobject/__pycache__/
|
|
36
|
+
!packages/ginext-gi-compat/tests/pygobject/
|
|
37
|
+
!packages/ginext-gi-compat/tests/pygobject/**
|
|
38
|
+
packages/ginext-gi-compat/tests/pygobject/__pycache__/
|
|
39
|
+
tags
|
|
40
|
+
# Editor / IDE local state
|
|
41
|
+
.obsidian/
|
|
42
|
+
core.*
|
|
43
|
+
src/gitlab-agent-bot/.env
|
|
44
|
+
src/gitlab-agent-bot/.venv/
|
|
45
|
+
src/gitlab-agent-bot/.ruff_cache/
|
|
46
|
+
src/gitlab-agent-bot/work/
|
|
47
|
+
# Third-party apps used as integration smoke tests (Drawing etc.) —
|
|
48
|
+
# checked out locally for `make drawing` / `make showtime`, not vendored.
|
|
49
|
+
# pyedit is our own showcase and IS tracked.
|
|
50
|
+
/apps/drawing/
|
|
51
|
+
/apps/drawing-run/
|
|
52
|
+
/apps/gnome-text-editor/
|
|
53
|
+
/apps/showtime/
|
|
54
|
+
vcpkg_installed/
|
|
55
|
+
|
|
56
|
+
# Windows build/scanner venvs
|
|
57
|
+
.venv*/
|
gi-0.8.1/PKG-INFO
ADDED
|
@@ -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/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# gi
|
|
2
|
+
|
|
3
|
+
Meta-package for [ginext](https://github.com/jdahlin/ginext) — fast, lazy,
|
|
4
|
+
JIT-compiled GObject-introspection bindings for free-threaded Python.
|
|
5
|
+
|
|
6
|
+
```sh
|
|
7
|
+
pip install gi # core (import as `ginext`)
|
|
8
|
+
pip install gi[gtk] # + GTK/Gdk/Pango/Gsk
|
|
9
|
+
pip install gi[all] # all overlays
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
`pip install gi` installs `ginext-core`; the code imports as `ginext`
|
|
13
|
+
(`from ginext import Gtk`). This distribution ships no `gi` module and does not
|
|
14
|
+
conflict with PyGObject.
|
gi-0.8.1/pyproject.toml
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
# `gi` is a meta-package (no code of its own): a convenient, owned PyPI name
|
|
3
|
+
# that pulls in the real ginext distributions. `pip install gi` gives you the
|
|
4
|
+
# core (import as `ginext`); extras add the namespace overlays:
|
|
5
|
+
# pip install gi -> ginext-core
|
|
6
|
+
# pip install gi[gtk] -> ginext-core + ginext-gtk
|
|
7
|
+
# pip install gi[all] -> every overlay
|
|
8
|
+
# It ships no importable `gi` module, so it does not collide with PyGObject.
|
|
9
|
+
name = "gi"
|
|
10
|
+
version = "0.8.1"
|
|
11
|
+
description = "Meta-package for ginext — GObject-introspection bindings for free-threaded Python (imports as `ginext`)"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.14"
|
|
14
|
+
license = "LGPL-2.1-or-later"
|
|
15
|
+
authors = [{ name = "Johan Dahlin", email = "jdahlin@gmail.com" }]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Programming Language :: Python :: 3.14",
|
|
20
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
21
|
+
]
|
|
22
|
+
dependencies = ["ginext-core>=0.8.1"]
|
|
23
|
+
|
|
24
|
+
[project.optional-dependencies]
|
|
25
|
+
gio = ["ginext-core>=0.8.1", "ginext-gio>=0.8.1"]
|
|
26
|
+
gtk = ["ginext-core>=0.8.1", "ginext-gtk>=0.8.1"]
|
|
27
|
+
gst = ["ginext-core>=0.8.1", "ginext-gst>=0.8.1"]
|
|
28
|
+
libsoup = ["ginext-core>=0.8.1", "ginext-libsoup>=0.8.1"]
|
|
29
|
+
compat = ["ginext-core>=0.8.1", "ginext-gi-compat>=0.8.1"]
|
|
30
|
+
stubs = ["ginext-core>=0.8.1", "ginext-stubs>=0.8.1"]
|
|
31
|
+
all = [
|
|
32
|
+
"ginext-core>=0.8.1",
|
|
33
|
+
"ginext-gio>=0.8.1",
|
|
34
|
+
"ginext-gtk>=0.8.1",
|
|
35
|
+
"ginext-gst>=0.8.1",
|
|
36
|
+
"ginext-libsoup>=0.8.1",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[project.urls]
|
|
40
|
+
Homepage = "https://github.com/jdahlin/ginext"
|
|
41
|
+
Repository = "https://github.com/jdahlin/ginext"
|
|
42
|
+
Issues = "https://github.com/jdahlin/ginext/issues"
|
|
43
|
+
|
|
44
|
+
[build-system]
|
|
45
|
+
requires = ["hatchling"]
|
|
46
|
+
build-backend = "hatchling.build"
|
|
47
|
+
|
|
48
|
+
# Metadata-only wheel — no modules to ship.
|
|
49
|
+
[tool.hatch.build.targets.wheel]
|
|
50
|
+
bypass-selection = true
|