]> kaliko git repositories - python-musicpd.git/blobdiff - setup.py
Add rangeid command
[python-musicpd.git] / setup.py
index 8bc489d14bfc211760f75fde8a047fb882af3b27..286dafa8fbeb462c25bfd5bb1437547544e7960e 100644 (file)
--- 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.rst', encoding='UTF-8') as file:
+    LONG_DESCRIPTION = file.read()
+
 CLASSIFIERS = [
     "Development Status :: 5 - Production/Stable",
     "Intended Audience :: Developers",
@@ -20,7 +24,7 @@ CLASSIFIERS = [
 
 LICENSE = """\
 Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
-Copyright (C) 2012-2013  Kaliko Jack <kaliko@azylum.org>
+Copyright (C) 2012-2014  Kaliko Jack <kaliko@azylum.org>
 
 python-musicpd is free software: you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -40,8 +44,8 @@ along with python-musicpd.  If not, see <http://www.gnu.org/licenses/>.\
 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",