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.
 
 

39 lines
1.2 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 @ git+https://www.funkthat.com/gitea/jmg/alarmdecoder.git@af9e785acc09dac39511a30aa251c5b1916efae7#egg=alarmdecoder',
  14. 'mock',
  15. 'twisted',
  16. 'pyserial',
  17. ],
  18. tests_require=[
  19. 'coverage',
  20. ],
  21. extras_require = {
  22. 'dev': [ 'coverage' ],
  23. },
  24. classifiers=[
  25. 'Development Status :: 4 - Beta',
  26. 'Framework :: Twisted',
  27. 'Intended Audience :: Developers',
  28. 'License :: OSI Approved :: BSD License',
  29. #'Operating System :: MacOS :: MacOS X',
  30. #'Operating System :: Microsoft :: Windows',
  31. 'Operating System :: POSIX',
  32. 'Programming Language :: Python',
  33. 'Topic :: Home Automation',
  34. 'Topic :: Security',
  35. 'Topic :: Software Development :: Libraries :: Python Modules',
  36. ],
  37. )