X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=18e00077babaa124e9ef20512e12d92b901e3540;hp=13816a7f4141682decc6eddfa074afbd471ba009;hb=d28bd57ddc3465db4fcaa540fe7cb3de53f8be6b;hpb=e1bde448be82c3cedaadd6fa0f5447d250ecefb2 diff --git a/setup.py b/setup.py index 13816a7..18e0007 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,17 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 from distutils.core import setup +from musicpd import VERSION DESCRIPTION = """\ An MPD (Music Player Daemon) client library written in pure Python.\ """ + +with open('README.rst') as file: + LONG_DESCRIPTION = file.read() + CLASSIFIERS = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -38,18 +43,18 @@ 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=["mpd"], + py_modules=["musicpd"], classifiers=CLASSIFIERS, - #license=LICENSE, + license=LICENSE, keywords=["mpd"], - #platforms=["Independant"], + platforms=["Independant"], )