From 1a15d301b955176f35d0e44e0489c396b4b9e10a Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Tue, 17 Oct 2023 13:41:59 +0200 Subject: [PATCH] bindings: python: change the package name to 'gpiod' 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 --- 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 df10e18..0fb9581 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -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, -- 2.30.2