X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=81c1276a03afb5f7f6aeef3380f4c9c786ad3dc8;hp=8bc489d14bfc211760f75fde8a047fb882af3b27;hb=4fdeb581beba85d9157fac917c48ae08dda4c941;hpb=8b540cb8ec163a457d81b84098eba80d630ed7e7 diff --git a/setup.py b/setup.py index 8bc489d..81c1276 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,10 @@ 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", @@ -40,8 +44,8 @@ along with python-musicpd. If not, see .\ setup( name='python-musicpd', version=VERSION, - description='Python MPD client library', - long_description=DESCRIPTION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, author='Kaliko Jack', author_email='kaliko@azylum.org', url="http://kaliko.me/code/python-musicpd",