Files
Python-Arduino-Command-API/setup.py
2019-04-20 22:46:38 -07:00

20 lines
594 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="arduino-python3",
version="0.3",
install_requires=['pyserial'],
author="Morten Kals",
author_email="morten@kals.no",
description="A light-weight Python library that provides a serial \
bridge for communicating with Arduino microcontroller boards. Extended to work with Python 3",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/mkals/Python-Arduino-Command-API',
packages=['Arduino'],
license='MIT',
)