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.

30 lines
862 B

  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='Interface to 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='ad2usb ad2serial ad2pi alarm security ademco',
  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'],
  21. install_requires=[
  22. 'OpenSSL',
  23. 'pyftdi'
  24. ],
  25. scripts=['bin/ad2-sslterm', 'bin/ad2-firmwareupload'],
  26. include_package_data=True,
  27. zip_safe=False)