Wrapper around alarmdecoder to make it Twisted compatible.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
1.0 KiB

  1. try:
  2. from setuptools import setup
  3. except ImportError:
  4. from distutils.core import setup
  5. setup(name='adtwist',
  6. version='1.0.0',
  7. description='Allow use of alarmdecoded with twisted',
  8. author='John-Mark Gurney',
  9. author_email='jmg@funkthat.com',
  10. url='https://github.com/jmgurney/adtwist',
  11. py_modules=['adtwist'],
  12. install_requires=[
  13. 'alarmdecoder',
  14. 'mock',
  15. 'twisted',
  16. 'pyserial',
  17. ],
  18. tests_require=[
  19. 'coverage',
  20. ],
  21. classifiers=[
  22. 'Development Status :: 4 - Beta',
  23. 'Framework :: Twisted',
  24. 'Intended Audience :: Developers',
  25. 'License :: OSI Approved :: BSD License',
  26. #'Operating System :: MacOS :: MacOS X',
  27. #'Operating System :: Microsoft :: Windows',
  28. 'Operating System :: POSIX',
  29. 'Programming Language :: Python',
  30. 'Topic :: Home Automation',
  31. 'Topic :: Security',
  32. 'Topic :: Software Development :: Libraries :: Python Modules',
  33. ],
  34. )