mirror of
https://github.com/thearn/Python-Arduino-Command-API.git
synced 2026-01-13 08:27:56 -05:00
12 lines
423 B
Python
12 lines
423 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(name='Python Arduino Command API',
|
|
version='0.1',
|
|
install_requires=['pyserial >= 2.6'],
|
|
description="a light-weight Python library for communicating with Arduino microcontroller boards",
|
|
author='Tristan Hearn',
|
|
author_email='tristanhearn@gmail.com',
|
|
url='https://github.com/thearn/pickle-gzip',
|
|
license='Apache 2.0',
|
|
packages=['Arduino'],
|
|
) |