From 89624cf0a1c3f561bf4dbedad16dbe28d14cf16f Mon Sep 17 00:00:00 2001 From: wisp3rwind <17089248+wisp3rwind@users.noreply.github.com> Date: Mon, 22 Mar 2021 19:04:49 +0100 Subject: [PATCH] setup.py: add 3.9 classifier, add note about ffmpeg dep for replaygain --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ec1d2c819..8191d3888 100755 --- a/setup.py +++ b/setup.py @@ -178,8 +178,10 @@ setup( # embedart: ImageMagick # absubmit: extractor binary from https://acousticbrainz.org/download # keyfinder: KeyFinder - # replaygain: python-gi and GStreamer 1.0+ or mp3gain/aacgain + # replaygain: python-gi and GStreamer 1.0+ + # or mp3gain/aacgain # or Python Audio Tools + # or ffmpeg # ipfs: go-ipfs classifiers=[ @@ -196,6 +198,7 @@ setup( 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', ], )