Yet Another Denon Python Module
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.
 
 

32 lines
953 B

  1. try:
  2. from setuptools import setup
  3. except ImportError:
  4. from distutils.core import setup
  5. setup(name='yadenon',
  6. version='2.0.0',
  7. description='Yet Anoter Python Denon AVR module',
  8. author='John-Mark Gurney',
  9. author_email='jmg@funkthat.com',
  10. url='https://github.com/jmgurney/yadenon',
  11. py_modules=['yadenon'],
  12. install_requires=[
  13. 'mock',
  14. 'twisted',
  15. 'pyserial',
  16. ],
  17. tests_require=[
  18. 'coverage',
  19. ],
  20. classifiers=[
  21. 'Development Status :: 5 - Production/Stable',
  22. 'Intended Audience :: Developers',
  23. 'License :: OSI Approved :: BSD License',
  24. 'Operating System :: MacOS :: MacOS X',
  25. 'Operating System :: Microsoft :: Windows',
  26. 'Operating System :: POSIX',
  27. 'Programming Language :: Python',
  28. 'Topic :: Software Development :: Libraries :: Python Modules',
  29. ],
  30. )