diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..294d247 --- /dev/null +++ b/setup.py @@ -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", + ], +) +