Files
Python-Arduino-Command-API/setup.py
2019-05-08 00:15:23 -07:00

20 lines
595 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="arduino-python3",
version="0.6",
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/Arduino-Python3-Command-API',
packages=['Arduino'],
license='MIT',
)