72a8df3ed9
Station icons now get converted to a JPEG with a maxmimum dimension of 290 on icon request. Although we need to implement caching and aspect ratio keeping, this should fix issues with incompatible station icons and HTTPS icon URLs. Adds a new package dependency: Pillow
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
import ycast
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name='ycast',
|
|
version=ycast.__version__,
|
|
author='milaq',
|
|
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',
|
|
'streaming',
|
|
'vtuner',
|
|
'internet radio',
|
|
'music',
|
|
'radio',
|
|
'shoutcast',
|
|
'avr',
|
|
'emulation',
|
|
'yamaha',
|
|
'onkyo',
|
|
'denon'
|
|
],
|
|
install_requires=['requests', 'flask', 'PyYAML', 'Pillow'],
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests'])
|
|
)
|