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
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.
------------------------------------------------------------------------------
-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>.
from distutils.core import setup
+from musicpd import VERSION
DESCRIPTION = """\
An MPD (Music Player Daemon) client library written in pure Python.\
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,