# HG changeset patch # User Reed Wade # Date 1588800678 -7200 # Wed May 06 23:31:18 2020 +0200 # Node ID bd1036bce2dc11f29956801e18cf1c22bb50096b # Parent ebe49e6aaac48d77f3597b19ff5faa696ae19515 Finish unifying metadatas diff --git a/README.rst b/README.rst deleted file mode 100644 --- a/README.rst +++ /dev/null @@ -1,47 +0,0 @@ -Mopidy Multisonic -================= - -Yes, another mopidy subsonic backend provider. This module allow multiple -subsonic server providers - -## Installation - -Install by running:: - - python3 -m pip install Mopidy-Multisonic - -## Configuration - -Before starting Mopidy, you must add configuration for -Mopidy-Multisonic to your Mopidy configuration file:: - - [multisonic] - providers = - PROVIDER_NAME: PROTOCOL://USERNAME:PASSWORD@TARGET - [ANOTHER] - - [multisonic] - providers = - banalisation: https://mr_banal:azerty@music.banalserver.com - - [multisonic] - providers = - banalisation: https://mr_banal:azerty@music.banalserver.com - decadence: http://h4ck3r:1213@toot.com - - -Project resources -================= - -- `Source code `_ -- `Todo tracker `_ -- `Mailing list `_ -- `Changelog `_ - - -Credits -======= - -- Original author: `ReedWade `__ -- Current maintainer: `ReedWade `__ -- `Contributors `_ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -11,12 +11,12 @@ setup( name='Mopidy-Multisonic', version=get_version('mopidy_multisonic/__init__.py'), - url='https://hg.sr.ht/~reedwade/mopidy_multisonic', + url='https://sr.ht/~reedwade/mopidy-multisonic/', license='Apache License, Version 2.0', author='ReedWade', author_email='', description='A mopidy backend provider for multisonic services', - long_description=open('README.rst').read(), + long_description=open('README.md').read(), packages=find_packages(exclude=['tests', 'tests.*']), zip_safe=False, include_package_data=True,