]> kaliko git repositories - python-musicpd.git/blobdiff - musicpd.py
Renamed project mpd→musicpd
[python-musicpd.git] / musicpd.py
similarity index 98%
rename from mpd.py
rename to musicpd.py
index 7c7f0168e615eefb914216afa1dfebab1bc4dbd3..864337e711baeb4ffa1cf05841df5c2acd87d3c0 100644 (file)
--- a/mpd.py
@@ -1,19 +1,19 @@
-# python-mpd: Python MPD client library
+# python-musicpd: Python MPD client library
 # Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
-# Copyright (C)      2012  Kaliko Jack <kaliko@azylum.org>
+# Copyright (C) 2012-2013  Kaliko Jack <kaliko@azylum.org>
 #
-# python-mpd is free software: you can redistribute it and/or modify
+# 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
 # the Free Software Foundation, either version 3 of the License, or
 # (at your option) any later version.
 #
-# python-mpd is distributed in the hope that it will be useful,
+# python-musicpd is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with python-mpd.  If not, see <http://www.gnu.org/licenses/>.
+# along with python-musicpd.  If not, see <http://www.gnu.org/licenses/>.
 
 import socket
 
@@ -22,6 +22,7 @@ HELLO_PREFIX = "OK MPD "
 ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
+VERSION = '0.3.1b'
 
 
 class MPDError(Exception):