12345678910111213141516171819202122232425262728293031323334353637383940 |
- from setuptools import setup, find_packages
- with open("README.md", "r") as fh:
- long_description = fh.read()
- setup(
- name='ycast',
- version='0.9.8',
- author='Micha LaQua',
- author_email='micha.laqua@gmail.com',
- description='Self hosted vTuner internet radio service emulation',
- long_description=long_description,
- long_description_content_type="text/markdown",
- url='https://github.com/milaq/YCast',
- license='GPLv3',
- classifiers=[
- 'Development Status :: 4 - Beta',
- 'Intended Audience :: Developers',
- 'Intended Audience :: System Administrators',
- 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
- 'Natural Language :: English',
- 'Operating System :: POSIX :: Linux',
- 'Programming Language :: Python :: 3',
- 'Topic :: Multimedia :: Sound/Audio',
- 'Topic :: Software Development :: Libraries :: Python Modules'
- ],
- keywords=[
- 'ycast',
- 'vtuner',
- 'internet radio',
- 'shoutcast',
- 'avr',
- 'emulation',
- 'yamaha',
- 'onkyo',
- 'denon'
- ],
- install_requires=['requests', 'flask', 'PyYAML'],
- packages=find_packages(exclude=['contrib', 'docs', 'tests'])
- )
|