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