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.
 
 

21 lines
741 B

  1. from distutils.core import setup
  2. setup(name='yadenon',
  3. version='1.0.0',
  4. description='Yet Anoter Python Denon AVR module',
  5. author='John-Mark Gurney',
  6. author_email='jmg@funkthat.com',
  7. url='https://github.com/jmgurney/yadenon',
  8. py_modules=['yadenon'],
  9. classifiers=[
  10. 'Development Status :: 5 - Production/Stable',
  11. 'Intended Audience :: Developers',
  12. 'License :: OSI Approved :: BSD License',
  13. 'Operating System :: MacOS :: MacOS X',
  14. 'Operating System :: Microsoft :: Windows',
  15. 'Operating System :: POSIX',
  16. 'Programming Language :: Python',
  17. 'Topic :: Software Development :: Libraries :: Python Modules',
  18. ],
  19. )