forked from thearn/Python-Arduino-Command-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
13 lines (12 loc) · 459 Bytes
/
setup.py
File metadata and controls
13 lines (12 loc) · 459 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
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'],
)