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

Comments

Bartosz Golaszewski Sept. 16, 2024, 6:49 a.m. UTC | #1
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>


On Sat, 14 Sep 2024 13:33:02 -0500, Vincent Fazio wrote:
> 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
> 
> 

Applied, thanks!

[1/1] bindings: python: add py.typed marker
      commit: c840e17a9ca05e44ec823b77843ab0e8b88691c3

Best regards,
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},