Added setup.py

This commit is contained in:
BlueFox 2021-12-04 12:28:34 +00:00
parent 3d42c9dd68
commit 155098672c
2 changed files with 15 additions and 0 deletions

0
CHANGES.md Normal file
View File

15
setup.py Normal file
View File

@ -0,0 +1,15 @@
from setuptools import setup
setup(
name='RPiGPIO.makertools',
version='0.1.0',
author='BlueFox',
author_email='bluefox@privacynerd.de',
packages=['rpigpio_makertools'],
license='LICENSE',
description='Library for communicating with OLED-, E-Ink-, TFT- and so on -displays. And some other useful stuff.',
install_requires=[
"RPi.GPIO >= 0.7.0",
],
)