]> kaliko git repositories - python-musicpd.git/commitdiff
Renamed project mpd→musicpd v0.3.1b
authorKaliko Jack <kaliko@azylum.org>
Thu, 9 May 2013 08:32:42 +0000 (10:32 +0200)
committerKaliko Jack <kaliko@azylum.org>
Thu, 9 May 2013 08:32:42 +0000 (10:32 +0200)
CHANGES.txt
musicpd.py [moved from mpd.py with 98% similarity]
setup.py

index 27a54e4f460fbfeaca9f6248e6e23997fec554ce..c07fcf85e5764db97458dd4ad2b87e97ff3a40c4 100644 (file)
@@ -1,9 +1,10 @@
-python-mpd Changes List
-=======================
+python-musicpd Changes List
+===========================
 
 Changes in 0.3.1 UNRELEASED
 ----------------
 
 
 Changes in 0.3.1 UNRELEASED
 ----------------
 
+* renamed musicpd
 * python3 port
 * added searchadd and searchaddpl commands
 * added seekcur command
 * python3 port
 * added searchadd and searchaddpl commands
 * added seekcur command
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) 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.
 #
 # 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
 # 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
 
 
 import socket
 
@@ -22,6 +22,7 @@ HELLO_PREFIX = "OK MPD "
 ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
 ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
+VERSION = '0.3.1b'
 
 
 class MPDError(Exception):
 
 
 class MPDError(Exception):
index fee2420bd2c64ceeb50f23e9d650e0204427ed28..13816a7f4141682decc6eddfa074afbd471ba009 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -13,37 +13,38 @@ CLASSIFIERS = [
     "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
     "Natural Language :: English",
     "Operating System :: OS Independent",
     "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
     "Natural Language :: English",
     "Operating System :: OS Independent",
-    "Programming Language :: Python",
+    "Programming Language :: Python :: 3",
     "Topic :: Software Development :: Libraries :: Python Modules",
 ]
 
 LICENSE = """\
 Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
     "Topic :: Software Development :: Libraries :: Python Modules",
 ]
 
 LICENSE = """\
 Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
+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.
 
 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
 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/>.\
 """
 
 
 setup(
 """
 
 
 setup(
-    name="python-mpd",
-    version="0.3.0",
-    description="Python MPD client library",
+    name='python-musicpd',
+    version='0.3.1',
+    description='Python MPD client library',
     long_description=DESCRIPTION,
     long_description=DESCRIPTION,
-    author="J. Alexander Treuman",
-    author_email="jat@spatialrift.net",
-    url="http://jatreuman.indefero.net/p/python-mpd/",
-    download_url="http://pypi.python.org/pypi/python-mpd/",
+    author='Kaliko Jack',
+    author_email='kaliko@azylum.org',
+    #url="http://jatreuman.indefero.net/p/python-mpd/",
+    download_url="http://pypi.python.org/pypi/python-musicpd/",
     py_modules=["mpd"],
     classifiers=CLASSIFIERS,
     #license=LICENSE,
     py_modules=["mpd"],
     classifiers=CLASSIFIERS,
     #license=LICENSE,