From 324d3c0741961317bf8b07674e25827eaccccff5 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 30 Nov 2022 13:42:31 +0100 Subject: [PATCH] bindings: python: extend setup.py Add additional information to setup.py. This will be visible in the EGG file. Signed-off-by: Bartosz Golaszewski --- bindings/python/setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index c90d7d7..7ad5de3 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -39,4 +39,9 @@ setup( packages=find_packages(include=["gpiod"]), ext_modules=extensions, version=__version__, + author="Bartosz Golaszewski", + author_email="brgl@bgdev.pl", + description="Python bindings for libgpiod", + platforms=["linux"], + license="LGPLv2.1", ) -- 2.30.2