setup.py 605 B

1234567891011121314151617
  1. import setuptools
  2. setuptools.setup(
  3. name = 'alphasign',
  4. version = '1.0',
  5. packages = setuptools.find_packages(),
  6. install_requires = ['pyserial>=2.4', 'pyusb>=1.0.0a2', 'pyyaml>=3.05'],
  7. author = 'Matt Sparks',
  8. author_email = 'ms@quadpoint.org',
  9. description = 'Implementation of the Alpha Sign Communications Protocol',
  10. long_description = ('Implementation of the Alpha Sign Communications '
  11. 'Protocol, which is used by many commercial LED signs, '
  12. 'including the Betabrite.'),
  13. url = 'https://github.com/msparks/alphasign',
  14. license = 'BSD',
  15. )