X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=2c182a4aef111df571de847b67425d6526021f02;hp=e5b82559eda42325fe6625553562cc47809fa192;hb=fc0476b1fdf19914a4b74ba8312e3db95b60fd7f;hpb=53a5899a67eaf6f958e40276362a9593a16a2445 diff --git a/setup.py b/setup.py index e5b8255..2c182a4 100644 --- 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,31 +18,31 @@ CLASSIFIERS = [ ] LICENSE = """\ -Copyright (C) 2008 J. Alexander Treuman +Copyright (C) 2008-2010 J. Alexander Treuman -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 .\ +You should have received a copy of the GNU Lesser General Public License +along with python-mpd. If not, see .\ """ 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,