RPiGPIO.makertools/setup.py
2021-12-04 18:52:41 +01:00

18 lines
373 B
Python

from setuptools import setup
setup(
name='RPiGPIO.makertools',
version='0.1.0',
author='BlueFox',
author_email='bluefox@privacynerd.de',
packages=['RPiGPIOmakertools'],
license='LICENSE',
description='Library with some handy tools for working with GPIO',
install_requires=[
"RPi.GPIO",
"Pillow",
"smbus2",
],
)