]> kaliko git repositories - python-musicpd.git/commitdiff
Preparing 0.4 release
authorKaliko Jack <kaliko@azylum.org>
Tue, 12 Nov 2013 19:16:15 +0000 (20:16 +0100)
committerKaliko Jack <kaliko@azylum.org>
Tue, 12 Nov 2013 19:16:15 +0000 (20:16 +0100)
README.txt
musicpd.py
setup.py

index 9cf4173ecaad78862df6325a98d7c1566b30c841..5388229e06eb793a6fcec2985eb2a74592fe4684 100644 (file)
@@ -14,7 +14,7 @@ Getting the latest source code
 If you would instead like to use the latest source code, you can grab a copy
 of the development version from git by running the command:
 
-  git clone git://jatreuman.indefero.net/jatreuman/python-mpd.git
+  git clone git://git.kaliko.me/python-musicpd.git
 
 
 Installing from source
@@ -22,10 +22,10 @@ Installing from source
 
 To install python-mpd from source, simply run the command:
 
-  python setup.py install
+  python3 setup.py install
 
 You can use the `--help` switch to `setup.py` for a complete list of commands
-and their options.  See the http://docs.python.org/inst/inst.html[Installing
+and their options.  See the http://docs.python.org/3/install/[Installing
 Python Modules] document for more details.
 
 
@@ -69,9 +69,12 @@ for song in client.playlistinfo():
 ------------------------------------------------------------------------------
 
 
-Contacting the author
----------------------
+Contacting authors
+------------------
 
-You can contact the author by emailing J. Alexander Treuman
+You can contact the original author by emailing J. Alexander Treuman
 <mailto:jat@spatialrift.net[]>.  He can also be found idling in #mpd on
 irc.freenode.net as jat.
+
+The current maintainer can be found on xmpp chat room kaliko.me@conf.azylum.org
+or you can contact him by email/xmpp <kaliko@azylum.org>.
index f365bb021027948bf731e18dd5dc08d47a31575b..f480acdd0f5897b91a8eae8e0783d1ba55e86fe9 100644 (file)
@@ -22,7 +22,7 @@ HELLO_PREFIX = "OK MPD "
 ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
-VERSION = '0.3.1b'
+VERSION = '0.4.0pr0'
 
 
 class MPDError(Exception):
index e3418aba980dc354729a8f039cc33ebe4491c424..8bc489d14bfc211760f75fde8a047fb882af3b27 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,6 +2,7 @@
 
 from distutils.core import setup
 
+from musicpd import VERSION
 
 DESCRIPTION = """\
 An MPD (Music Player Daemon) client library written in pure Python.\
@@ -38,12 +39,12 @@ along with python-musicpd.  If not, see <http://www.gnu.org/licenses/>.\
 
 setup(
     name='python-musicpd',
-    version='0.3.1',
+    version=VERSION,
     description='Python MPD client library',
     long_description=DESCRIPTION,
     author='Kaliko Jack',
     author_email='kaliko@azylum.org',
-    #url="http://jatreuman.indefero.net/p/python-mpd/",
+    url="http://kaliko.me/code/python-musicpd",
     download_url="http://pypi.python.org/pypi/python-musicpd/",
     py_modules=["musicpd"],
     classifiers=CLASSIFIERS,