diff --git a/docs/plugins/mpdstats.rst b/docs/plugins/mpdstats.rst index a483b13bc..1f74a0976 100644 --- a/docs/plugins/mpdstats.rst +++ b/docs/plugins/mpdstats.rst @@ -14,12 +14,12 @@ habits from `MPD`_. It collects the following information about tracks: Installing Dependencies ----------------------- -This plugin requires the python-mpd library in order to talk to the MPD +This plugin requires the python-mpd2 library in order to talk to the MPD server. Install the library from `pip`_, like so:: - $ pip install python-mpd + $ pip install python-mpd2 Add the ``mpdstats`` plugin to your configuration (see :ref:`using-plugins`). diff --git a/setup.py b/setup.py index e6f8bf66e..f9b2b0427 100755 --- a/setup.py +++ b/setup.py @@ -105,7 +105,7 @@ setup( 'responses', 'pyxdg', 'pathlib', - 'python-mpd', + 'python-mpd2', ], # Plugin (optional) dependencies: @@ -115,7 +115,7 @@ setup( 'discogs': ['discogs-client>=2.1.0'], 'echonest': ['pyechonest'], 'lastgenre': ['pylast'], - 'mpdstats': ['python-mpd'], + 'mpdstats': ['python-mpd2'], 'web': ['flask', 'flask-cors'], 'import': ['rarfile'], 'thumbnails': ['pathlib', 'pyxdg'], diff --git a/tox.ini b/tox.ini index aaa25a01c..af245bf8f 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ deps = pathlib pyxdg jellyfish - python-mpd + python-mpd2 commands = nosetests {posargs}