python-musicpd Changes List
===========================
+Changes in 0.4.3 UNRELEASED
+---------------------------
+
+* Use setuptools
+
Changes in 0.4.2
----------------
# You should have received a copy of the GNU Lesser General Public License
# along with python-musicpd. If not, see <http://www.gnu.org/licenses/>.
-# pylint: disable=C0111
+# pylint: disable=missing-docstring
import socket
from functools import wraps
ERROR_PREFIX = "ACK "
SUCCESS = "OK"
NEXT = "list_OK"
-VERSION = '0.4.2'
+VERSION = '0.4.3'
def iterator_wrapper(func):
self.mpd_version = line[len(HELLO_PREFIX):].strip()
def _reset(self):
- # pylint: disable=w0201
self.mpd_version = None
self._iterating = False
self._pending = []
#! /usr/bin/env python3
-from distutils.core import setup
+from setuptools import setup
from musicpd import VERSION
LICENSE = """\
Copyright (C) 2008-2010 J. Alexander Treuman <jat@spatialrift.net>
-Copyright (C) 2012-2014 Kaliko Jack <kaliko@azylum.org>
+Copyright (C) 2012-2015 Kaliko Jack <kaliko@azylum.org>
python-musicpd is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
long_description=LONG_DESCRIPTION,
author='Kaliko Jack',
author_email='kaliko@azylum.org',
- url="http://kaliko.me/code/python-musicpd",
- download_url="http://pypi.python.org/pypi/python-musicpd/",
- py_modules=["musicpd"],
+ url='http://kaliko.me/code/python-musicpd',
+ download_url='http://pypi.python.org/pypi/python-musicpd/',
+ py_modules=['musicpd'],
classifiers=CLASSIFIERS,
license=LICENSE,
- keywords=["mpd"],
- platforms=["Independant"],
+ keywords=['mpd', 'Music Player Daemon'],
+ platforms=['Independant'],
+ test_suite='test.py',
)