]> kaliko git repositories - python-musicpd.git/blobdiff - setup.py
adding replay_gain_mode and replay_gain_status commands
[python-musicpd.git] / setup.py
index 672fcc49b18a31cf334f2ca75c3cba8eb3115249..2c182a4aef111df571de847b67425d6526021f02 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -8,9 +8,9 @@ An MPD (Music Player Daemon) client library written in pure Python.\
 """
 
 CLASSIFIERS = [
-    "Development Status :: 4 - Beta",
+    "Development Status :: 5 - Production/Stable",
     "Intended Audience :: Developers",
-    "License :: OSI Approved :: GNU General Public License (GPL)",
+    "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
     "Natural Language :: English",
     "Operating System :: OS Independent",
     "Programming Language :: Python",
@@ -18,37 +18,37 @@ CLASSIFIERS = [
 ]
 
 LICENSE = """\
-Copyright (C) 2008  J. Alexander Treuman <jat@spatialrift.net>
+Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
 
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
+python-mpd is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 
-This program is distributed in the hope that it will be useful,
+python-mpd is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
+GNU Lesser General Public License for more details.
 
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see <http://www.gnu.org/licenses/>.\
+You should have received a copy of the GNU Lesser General Public License
+along with python-mpd.  If not, see <http://www.gnu.org/licenses/>.\
 """
 
 
 setup(
     name="python-mpd",
-    version="0.1.0",
+    version="0.2.1",
     description="Python MPD client library",
     long_description=DESCRIPTION,
     author="J. Alexander Treuman",
     author_email="jat@spatialrift.net",
-    url="http://www.musicpd.org/~jat/python-mpd/",
+    url="http://jatreuman.indefero.net/p/python-mpd/",
     download_url="http://pypi.python.org/pypi/python-mpd/",
     py_modules=["mpd"],
     classifiers=CLASSIFIERS,
-    license=LICENSE,
+    #license=LICENSE,
     keywords=["mpd"],
-    platforms=["Independant"],
+    #platforms=["Independant"],
 )