bindings: python: change the project name to libgpiod
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 12 Apr 2023 19:40:56 +0000 (21:40 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 12 Apr 2023 19:40:56 +0000 (21:40 +0200)
The name 'gpiod' is already taken on pypi. Switch to using 'libgpiod'
as the name of the project. Keep 'gpiod' as the package name which
maintains code compatibility.

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

index e748295c95d3feea418b6c30c816444f9041d2ad..6c83e22b11d39853d8e41264fab74651c56d725a 100644 (file)
@@ -46,7 +46,7 @@ with open(src("gpiod/version.py"), "r") as fd:
     exec(fd.read())
 
 setup(
-    name="gpiod",
+    name="libgpiod",
     packages=find_packages(include=["gpiod"]),
     ext_modules=extensions,
     version=__version__,