Skip to content

Commit

Permalink
Added setup.py and requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Tino de Bruijn committed Jul 22, 2010
1 parent 68d65ec commit a740a7e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions requirements.txt
@@ -0,0 +1 @@
pyserial
14 changes: 14 additions & 0 deletions setup.py
@@ -0,0 +1,14 @@
#!/usr/bin/env python

from distutils.core import setup

setup(
name='pyFirmata',
version='0.9',
description="A Python interface for the Firmata procotol",
author='Tino de Bruijn',
author_email='tinodb@gmail.com',
packages=['pyfirmata'],
include_package_data=True,
zip_safe=False,
)

0 comments on commit a740a7e

Please sign in to comment.