Update setup.py.in

This commit is contained in:
Joost Lekkerkerker 2024-10-26 11:07:44 +02:00 committed by GitHub
parent 4a98e4bdd4
commit bd8cbd5ab4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -12,13 +12,12 @@ setup(name='pigpio',
description='Raspberry Pi GPIO module', description='Raspberry Pi GPIO module',
long_description='Raspberry Pi Python module to access the pigpio daemon', long_description='Raspberry Pi Python module to access the pigpio daemon',
download_url='http://abyz.me.uk/rpi/pigpio/pigpio.zip', download_url='http://abyz.me.uk/rpi/pigpio/pigpio.zip',
license='unlicense.org', license='Unlicense',
py_modules=['pigpio'], py_modules=['pigpio'],
keywords=['raspberrypi', 'gpio',], keywords=['raspberrypi', 'gpio',],
classifiers=[ classifiers=[
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
], ],
package_dir={ '': '${CMAKE_CURRENT_SOURCE_DIR}'} package_dir={ '': '${CMAKE_CURRENT_SOURCE_DIR}'}
) )