X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;f=setup.py;h=81c1276a03afb5f7f6aeef3380f4c9c786ad3dc8;hb=4fdeb581beba85d9157fac917c48ae08dda4c941;hp=e3418aba980dc354729a8f039cc33ebe4491c424;hpb=8d479631733614b46a786022a53c8e40a4e92a1b;p=python-musicpd.git diff --git a/setup.py b/setup.py index e3418ab..81c1276 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,16 @@ from distutils.core import setup +from musicpd import VERSION DESCRIPTION = """\ An MPD (Music Player Daemon) client library written in pure Python.\ """ + +with open('README.txt') as file: + LONG_DESCRIPTION = file.read() + CLASSIFIERS = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -38,12 +43,12 @@ along with python-musicpd. If not, see .\ setup( name='python-musicpd', - version='0.3.1', - description='Python MPD client library', - long_description=DESCRIPTION, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_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,