From: Kaliko Jack Date: Tue, 12 Nov 2013 19:16:15 +0000 (+0100) Subject: Preparing 0.4 release X-Git-Tag: v0.4.0~7 X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=8b540cb8ec163a457d81b84098eba80d630ed7e7 Preparing 0.4 release --- diff --git a/README.txt b/README.txt index 9cf4173..5388229 100644 --- a/README.txt +++ b/README.txt @@ -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 . 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 . diff --git a/musicpd.py b/musicpd.py index f365bb0..f480acd 100644 --- a/musicpd.py +++ b/musicpd.py @@ -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): diff --git a/setup.py b/setup.py index e3418ab..8bc489d 100644 --- 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 .\ 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,