mirror of
https://github.com/thearn/Python-Arduino-Command-API.git
synced 2026-01-10 15:08:18 -05:00
14 lines
466 B
Python
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'],
|
|
)
|