Files
Python-Arduino-Command-API/setup.py
2013-10-10 16:37:34 -04:00

14 lines
472 B
Python

from setuptools import setup
setup(name='arduino-python',
version='0.2',
install_requires=['pyserial >= 2.6'],
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='Apache 2.0',
packages=['Arduino'],
)