From: Bartosz Golaszewski Date: Tue, 17 Oct 2023 11:41:59 +0000 (+0200) Subject: bindings: python: change the package name to 'gpiod' X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1a15d301b955176f35d0e44e0489c396b4b9e10a;p=qemu-gpiodev%2Flibgpiod.git 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 --- 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,