2019-07-10 12:58:14 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2019-08-18 12:11:38 +00:00
|
|
|
import ycast
|
|
|
|
|
2019-07-10 12:58:14 +00:00
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='ycast',
|
2019-08-18 12:11:38 +00:00
|
|
|
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-08-25 15:02:41 +00:00
|
|
|
install_requires=['requests', 'flask', 'PyYAML', 'Pillow'],
|
2019-07-10 12:58:14 +00:00
|
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests'])
|
|
|
|
)
|