forked from theycallmeswift/BreakfastSerial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 755 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = "BreakfastSerial",
version = "0.0.6",
description = "Python Framework for interacting with Arduino",
author = "Swift",
author_email = "[email protected]",
packages = find_packages(),
install_requires=['pyfirmata'],
url = "http://github.com/theycallmeswift/BreakfastSerial/",
keywords = ["arduino","firmata"],
long_description = """\
Firmata based framework for interacting with Arduino
----------------------------
DESCRIPTION
BreakfastSerial makes it easy to interact with Arduino boards over serial by using
the Firmata protocol. See http://www.github.com/theycallmeswift/BreakfastSerial
for more information.
""" )