18 lines
422 B
Python
18 lines
422 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 for communicating with OLED-, E-Ink-, TFT- and so on -displays. And some other useful stuff.',
|
|
install_requires=[
|
|
"RPi.GPIO",
|
|
"Pillow",
|
|
"smbus2",
|
|
],
|
|
)
|
|
|