X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=4e49c650ad74d842a5c17d09bf3af76be340c52d;hb=3f041f016053b04b6d6800186a27a7c0700e475c;hp=4e3185691b8603e777ed18193367e7d59a25d159;hpb=129580789b889e62a473b5ebe4ffd3a3d3423848;p=python-musicpd.git diff --git a/setup.py b/setup.py index 4e31856..4e49c65 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.rst', encoding='UTF-8') 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=["musicpd"], classifiers=CLASSIFIERS, - #license=LICENSE, + license=LICENSE, keywords=["mpd"], - #platforms=["Independant"], + platforms=["Independant"], )