From: Bartosz Golaszewski Date: Wed, 12 Apr 2023 19:40:56 +0000 (+0200) Subject: bindings: python: change the project name to libgpiod X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d5a454cda5044eff82fab3a0840af4b6078b86f2;p=qemu-gpiodev%2Flibgpiod.git 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 --- 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__,