Allow installing persistent cache drivers for album art

This commit is contained in:
Danielle McLean 2024-05-14 13:24:21 +10:00
parent b2f28de116
commit c7773bf324
Signed by: 00dani
GPG key ID: 6854781A0488421C
2 changed files with 146 additions and 74 deletions

View file

@ -23,6 +23,16 @@ classifiers = [
"Topic :: Multimedia :: Sound/Audio :: Players",
]
[project.optional-dependencies]
redis = ["aiocache[redis]"]
memcached = ["aiocache[memcached]"]
msgpack = [
"ormsgpack>=1.5.0",
]
all = [
"mpd-now-playable[redis,memcached,msgpack]",
]
[project.urls]
Homepage = "https://git.00dani.me/00dani/mpd-now-playable"
Issues = "https://git.00dani.me/00dani/mpd-now-playable/issues"