]> kaliko git repositories - python-musicpd.git/commitdiff
Use of setuptools
authorKaliko Jack <kaliko@azylum.org>
Fri, 6 Feb 2015 21:26:05 +0000 (22:26 +0100)
committerKaliko Jack <kaliko@azylum.org>
Fri, 6 Feb 2015 21:26:05 +0000 (22:26 +0100)
Update CHANGES, bump version

CHANGES.txt
musicpd.py
setup.py [changed mode: 0644->0755]

index 3a7d6b91ddd64d9b7a64b2b44da6ede2a710ebd9..c0d5d50b04cd4de9a9bbacc41a2bb8fceb381206 100644 (file)
@@ -1,6 +1,11 @@
 python-musicpd Changes List
 ===========================
 
+Changes in 0.4.3 UNRELEASED
+---------------------------
+
+* Use setuptools
+
 Changes in 0.4.2
 ----------------
 
index a2637fb4c4aa139e11cd28cf7b1cd8e3ddc5de80..855ff5f9718020a4da6fd9bb8b9aaffa6cc7bf70 100644 (file)
@@ -15,7 +15,7 @@
 # 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
@@ -25,7 +25,7 @@ HELLO_PREFIX = "OK MPD "
 ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
-VERSION = '0.4.2'
+VERSION = '0.4.3'
 
 
 def iterator_wrapper(func):
@@ -446,7 +446,6 @@ class MPDClient:
         self.mpd_version = line[len(HELLO_PREFIX):].strip()
 
     def _reset(self):
-        # pylint: disable=w0201
         self.mpd_version = None
         self._iterating = False
         self._pending = []
old mode 100644 (file)
new mode 100755 (executable)
index 286dafa..8ed1c02
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 #! /usr/bin/env python3
 
-from distutils.core import setup
+from setuptools import setup
 
 from musicpd import VERSION
 
@@ -24,7 +24,7 @@ CLASSIFIERS = [
 
 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
@@ -48,13 +48,14 @@ setup(
     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',
 )