setup.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. from setuptools import setup, find_packages
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setup(
  5. name='ycast',
  6. version='0.9.8',
  7. author='Micha LaQua',
  8. author_email='micha.laqua@gmail.com',
  9. description='Self hosted vTuner internet radio service emulation',
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url='https://github.com/milaq/YCast',
  13. license='GPLv3',
  14. classifiers=[
  15. 'Development Status :: 4 - Beta',
  16. 'Intended Audience :: Developers',
  17. 'Intended Audience :: System Administrators',
  18. 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
  19. 'Natural Language :: English',
  20. 'Operating System :: POSIX :: Linux',
  21. 'Programming Language :: Python :: 3',
  22. 'Topic :: Multimedia :: Sound/Audio',
  23. 'Topic :: Software Development :: Libraries :: Python Modules'
  24. ],
  25. keywords=[
  26. 'ycast',
  27. 'vtuner',
  28. 'internet radio',
  29. 'shoutcast',
  30. 'avr',
  31. 'emulation',
  32. 'yamaha',
  33. 'onkyo',
  34. 'denon'
  35. ],
  36. install_requires=['requests', 'flask', 'PyYAML'],
  37. packages=find_packages(exclude=['contrib', 'docs', 'tests'])
  38. )