1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
[metadata]
name = Supysonic
version = attr: supysonic.VERSION
url = https://supysonic.readthedocs.io
download_url = https://salsa.debian.org/python-team/packages/supysonic
author = Alban Féron
author_email = alban.feron@gmail.com
license = GNU AGPLv3
license_files = LICENSE
description = Python implementation of the Subsonic server API
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 art
* starred tracks/albums and ratings
* [Last.FM][lastfm] scrobbling
* Jukebox mode
Supysonic currently targets the version 1.10.2 of the Subsonic API. For more
details, go check the [API implementation status][docs-api].
[subsonic]: http://www.subsonic.org/
[lastfm]: https://www.last.fm/
[docs-api]: https://supysonic.readthedocs.io/en/latest/api.html
long_description_content_type = text/markdown
keywords = subsonic, music, server
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Environment :: Web Environment
Framework :: Flask
Intended Audience :: End Users/Desktop
Intended Audience :: System Administrators
License :: OSI Approved :: GNU Affero General Public License v3
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Multimedia :: Sound/Audio
[options]
python_requires = >=3.6,<3.11
install_requires =
click
flask >=0.11
pony >=0.7.6
Pillow
requests >=1.0.0
mediafile
watchdog >=0.8.0
zipstream-ng >=1.1.0, <2.0.0
packages = find:
include_package_data = true
zip_safe = false
[options.packages.find]
include = supysonic*
[options.entry_points]
console_scripts =
supysonic-cli = supysonic.cli:main
supysonic-daemon = supysonic.daemon:main
supysonic-server = supysonic.server:main
[options.data_files]
share/man/man1 = man/*.1
|