# HG changeset patch # User Reed Wade # Date 1580649690 -3600 # Sun Feb 02 14:21:30 2020 +0100 # Node ID b7d4ab386fa9c949177ae1d149eef086387f5d72 # Parent a8c170f4fb9e94bbb9b5dea0ec6043bd1f1d56ae Prepare release diff --git a/CHANGELOG.rst b/CHANGELOG.rst --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,7 +3,7 @@ ********* -v0.1.0 (UNRELEASED) +v0.1.0 ======================================== - Initial release. diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -5,7 +5,14 @@ ## Installation -## Config +Install by running:: + + python3 -m pip install Mopidy-Subsonic + +## Configuration + +Before starting Mopidy, you must add configuration for +Mopidy-Subsonic to your Mopidy configuration file:: ``` [multisonic] @@ -27,8 +34,13 @@ ``` -## More +## Project resources + +- [Todo tracker](https://todo.sr.ht/~reedwade/Mopidy-Multisonic) +- [Mailing list](https://lists.sr.ht/~reedwade/mopidy_multisonic) -[Todo tracker](https://todo.sr.ht/~reedwade/Mopidy-Multisonic) +## Credits -[Mailing list](https://lists.sr.ht/~reedwade/mopidy_multisonic) +- Original author: [ReedWade](https://hg.sr.ht/~reedwade) +- Current maintainer: [ReedWade](https://hg.sr.ht/~reedwade) +- [Contributors](https://hg.sr.ht/~reedwade/mopidy_multisonic/contributors) diff --git a/README.rst b/README.rst deleted file mode 100644 --- a/README.rst +++ /dev/null @@ -1,53 +0,0 @@ -**************************** -Mopidy-Subsonic -**************************** - -.. image:: https://img.shields.io/pypi/v/Mopidy-Subsonic - :target: https://pypi.org/project/Mopidy-Subsonic/ - :alt: Latest PyPI version - -.. image:: https://img.shields.io/circleci/build/gh/Eluminae/mopidy-subsonic - :target: https://circleci.com/gh/Eluminae/mopidy-subsonic - :alt: CircleCI build status - -.. image:: https://img.shields.io/codecov/c/gh/Eluminae/mopidy-subsonic - :target: https://codecov.io/gh/Eluminae/mopidy-subsonic - :alt: Test coverage - -Mopidy extension for subsonic provider - - -Installation -============ - -Install by running:: - - python3 -m pip install Mopidy-Subsonic - -See https://mopidy.com/ext/subsonic/ for alternative installation methods. - - -Configuration -============= - -Before starting Mopidy, you must add configuration for -Mopidy-Subsonic to your Mopidy configuration file:: - - [subsonic] - # TODO: Add example of extension config - - -Project resources -================= - -- `Source code `_ -- `Issue tracker `_ -- `Changelog `_ - - -Credits -======= - -- Original author: `Reed Wade `__ -- Current maintainer: `Reed Wade `__ -- `Contributors `_ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ 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,