A clone of: https://github.com/nutechsoftware/alarmdecoder This is requires as they dropped support for older firmware releases w/o building in backward compatibility code, and they had previously hardcoded pyserial to a python2 only version.
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.

34 lines
1.0 KiB

  1. from setuptools import setup
  2. def readme():
  3. with open('README.rst') as f:
  4. return f.read()
  5. setup(name='pyad2',
  6. version='0.5',
  7. description='Python interface library for the AD2 family of alarm devices.',
  8. long_description=readme(),
  9. classifiers=[
  10. 'Development Status :: 3 - Alpha',
  11. 'License :: OSI Approved :: MIT License',
  12. 'Programming Language :: Python :: 2.7',
  13. 'Topic :: Security Alarms',
  14. ],
  15. keywords='alarm data ad2usb ad2serial ad2pi security ademco dsc',
  16. url='http://github.com/nutechsoftware/pyad2',
  17. author='Nu Tech Software Solutions, Inc.',
  18. author_email='general@support.nutech.com',
  19. license='',
  20. packages=['pyad2', 'pyad2.event'],
  21. install_requires=[
  22. 'pyopenssl',
  23. 'pyusb>=1.0.0b1',
  24. 'pyserial>=2.6',
  25. 'pyftdi',
  26. ],
  27. test_suite='nose.collector',
  28. tests_require=['nose', 'mock'],
  29. scripts=['bin/ad2-sslterm', 'bin/ad2-firmwareupload'],
  30. include_package_data=True,
  31. zip_safe=False)