Files
Python-Arduino-Command-API/setup.py
Tristan Hearn 7ff3ede526 Update setup.py
2013-10-21 19:00:12 -04:00

14 lines
466 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='Apache 2.0',
packages=['Arduino'],
)