Skip to content

Commit

Permalink
adding setuptools setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
msparks committed Apr 21, 2009
1 parent 9589cb7 commit 3a759b1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import setuptools
setuptools.setup(
name = 'alphasign',
version = '0.9',
packages = setuptools.find_packages(),

install_requires = ['pyserial>=2.4', 'pyyaml>=3.05'],

author = 'Matt Sparks',
author_email = '[email protected]',
description = 'Implementation of the Alpha Sign Communications Protocol',
long_description = ('Implementation of the Alpha Sign Communications '
'Protocol, which is used by many commercial LED signs, '
'including the Betabrite.'),
url = 'http:https://quadpoint.org/projects/alphasign',
license = 'BSD',
)

0 comments on commit 3a759b1

Please sign in to comment.