Files
Python-Arduino-Command-API/setup.py
Jiri Popek 248eb509c8 FIX the license in setup.py
There is the  MIT license.txt file and setup.py sets a different one
2014-10-29 10:46:49 +01:00

14 lines
459 B
Python

from setuptools import setup
setup(name='arduino-python',
version='0.2',
install_requires=['pyserial'],
description="A light-weight Python library that provides a serial \
bridge for communicating with Arduino microcontroller boards.",
author='Tristan Hearn',
author_email='tristanhearn@gmail.com',
url='https://github.com/thearn/Python-Arduino-Command-API',
license='MIT',
packages=['Arduino'],
)