YCast/setup.py

46 lines
1.3 KiB
Python
Raw Normal View History

2019-07-10 12:58:14 +00:00
from setuptools import setup, find_packages
import ycast
2019-07-10 12:58:14 +00:00
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ycast',
version=ycast.__version__,
2019-08-18 12:14:53 +00:00
author='milaq',
2019-07-10 12:58:14 +00:00
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',
2019-08-18 12:14:53 +00:00
'streaming',
2019-07-10 12:58:14 +00:00
'vtuner',
'internet radio',
2019-08-18 12:14:53 +00:00
'music',
'radio',
2019-07-10 12:58:14 +00:00
'shoutcast',
'avr',
'emulation',
'yamaha',
'onkyo',
'denon'
],
2019-07-17 13:15:31 +00:00
install_requires=['requests', 'flask', 'PyYAML'],
2019-07-10 12:58:14 +00:00
packages=find_packages(exclude=['contrib', 'docs', 'tests'])
)