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