2021-12-04 12:28:34 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='RPiGPIO.makertools',
|
|
|
|
version='0.1.0',
|
|
|
|
author='BlueFox',
|
|
|
|
author_email='bluefox@privacynerd.de',
|
2021-12-04 13:50:31 +00:00
|
|
|
packages=['RPiGPIOmakertools'],
|
2021-12-04 12:28:34 +00:00
|
|
|
license='LICENSE',
|
|
|
|
description='Library for communicating with OLED-, E-Ink-, TFT- and so on -displays. And some other useful stuff.',
|
|
|
|
install_requires=[
|
2021-12-04 13:50:31 +00:00
|
|
|
"RPi.GPIO",
|
|
|
|
"Pillow",
|
2021-12-04 12:28:34 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|