bindings: python: change the package name to 'gpiod'
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 17 Oct 2023 11:41:59 +0000 (13:41 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 24 Oct 2023 08:20:21 +0000 (10:20 +0200)
We now control the name 'gpiod' on pypi. Let's change the project name
as the package we import in python code is named 'gpiod' and not
'libgpiod'

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/python/setup.py

index df10e1892dc7ad6c58c423a826c22be2b942cef8..0fb9581f9cc0a1b155e7e717ff51b812b864daf2 100644 (file)
@@ -58,7 +58,7 @@ with open("gpiod/version.py", "r") as fd:
     exec(fd.read())
 
 setup(
-    name="libgpiod",
+    name="gpiod",
     packages=find_packages(exclude=["tests", "tests.*"]),
     python_requires=">=3.9.0",
     ext_modules=extensions,