YCast/setup.py
2019-07-17 15:15:31 +02:00

41 lines
1.2 KiB
Python

from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ycast',
version='1.0.0',
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'])
)