Metadata-Version: 2.1
Name: mpd-queue
Version: 1.0.1
Summary: Beets plugin to add all imported tracks to an MPD server's queue
Home-page: https://github.com/ui-1/mpd-queue
Author: ui-1
Author-email: ui-1@posteo.org
License: GPLv3
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beets
Requires-Dist: python-mpd

# mpd-queue

- - -

A small [Beets](https://github.com/beetbox/beets) plugin to add newly imported tracks to the queue of your [MPD](https://github.com/MusicPlayerDaemon/MPD) server.

## Installation

To install the plugin, simply run the following:
```python
pip install mpd-queue
```
and then add `mpd-queue` to the list of enabled plugins in your Beets config.

## Configuration

Optionally, to specify a non-default location for the MPD server, add a configuration block like this:
```yaml
mpd-queue:
  host: example.com
  port: 6601
```

### Options

| Key  | Description                 | Default value |
|------|-----------------------------|---------------|
| host | Hostname of the MPD server  | localhost     |
| port | Port to use when connecting | 6600          |
