From d5a454cda5044eff82fab3a0840af4b6078b86f2 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 12 Apr 2023 21:40:56 +0200 Subject: [PATCH] bindings: python: change the project name to libgpiod 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 --- bindings/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index e748295..6c83e22 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -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__, -- 2.30.2