diff mbox series

[libgpiod] bindings: python: add py.typed marker

Message ID 20240914183302.15768-1-vfazio@gmail.com
State New
Headers show
Series [libgpiod] bindings: python: add py.typed marker | expand

Commit Message

Vincent Fazio Sept. 14, 2024, 6:33 p.m. UTC
Per PEP 561 [0], the marker is used by type checkers like mypy
to recognize that the library is typed.

[0]: https://peps.python.org/pep-0561/#packaging-type-information

Closes: https://github.com/brgl/libgpiod/issues/94
Signed-off-by: Vincent Fazio <vfazio@gmail.com>
---
 bindings/python/gpiod/py.typed | 0
 bindings/python/setup.py       | 1 +
 2 files changed, 1 insertion(+)
 create mode 100644 bindings/python/gpiod/py.typed
diff mbox series

Patch

diff --git a/bindings/python/gpiod/py.typed b/bindings/python/gpiod/py.typed
new file mode 100644
index 0000000..e69de29
diff --git a/bindings/python/setup.py b/bindings/python/setup.py
index 9607a28..1f04b99 100644
--- a/bindings/python/setup.py
+++ b/bindings/python/setup.py
@@ -224,6 +224,7 @@  setup(
     name="gpiod",
     url="https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git",
     packages=find_packages(exclude=["tests", "tests.*"]),
+    package_data={"gpiod": ["py.typed"]},
     python_requires=">=3.9.0",
     ext_modules=[gpiod_ext],
     cmdclass={"build_ext": build_ext, "sdist": sdist},