1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-12-23 09:26:18 +00:00
supysonic/supysonic/__init__.py

28 lines
896 B
Python
Raw Normal View History

2018-03-04 20:49:56 +00:00
# coding: utf-8
#
2017-08-07 09:04:00 +00:00
# This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API.
#
2018-02-14 18:53:17 +00:00
# Copyright (C) 2013-2018 Alban 'spl0k' Féron
2017-08-07 09:04:00 +00:00
# 2017 Óscar García Amor
#
2017-08-07 09:04:00 +00:00
# Distributed under terms of the GNU AGPLv3 license.
2017-08-07 09:04:00 +00:00
NAME = 'supysonic'
2018-02-14 18:53:17 +00:00
VERSION = '0.3'
2017-08-07 09:04:00 +00:00
DESCRIPTION = 'Python implementation of the Subsonic server API.'
KEYWORDS = 'subsonic music api'
AUTHOR_NAME = 'Alban Féron'
AUTHOR_EMAIL = 'alban.feron@gmail.com'
URL = 'https://github.com/spl0k/supysonic'
LICENSE = 'GNU AGPLv3'
LONG_DESCRIPTION = '''Supysonic is a Python implementation of the Subsonic server API.
Current supported features are:
* browsing (by folders or tags)
* streaming of various audio file formats
* transcoding
* user or random playlists
* cover arts (cover.jpg files in the same folder as music files)
* starred tracks/albums and ratings
* Last.FM scrobbling'''