X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=13816a7f4141682decc6eddfa074afbd471ba009;hp=507050fb86e8e4c265c16eddec1cacd541aaca39;hb=e1bde448be82c3cedaadd6fa0f5447d250ecefb2;hpb=0dfcd8a5c40c7bbed2e7e59a60bcbe046ee2b7af diff --git a/setup.py b/setup.py index 507050f..13816a7 100644 --- a/setup.py +++ b/setup.py @@ -8,42 +8,43 @@ 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", + "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules", ] LICENSE = """\ Copyright (C) 2008-2010 J. Alexander Treuman +Copyright (C) 2012-2013 Kaliko Jack -python-mpd is free software: you can redistribute it and/or modify +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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -python-mpd is distributed in the hope that it will be useful, +python-musicpd 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with python-mpd. If not, see .\ +along with python-musicpd. If not, see .\ """ setup( - name="python-mpd", - version="0.2.1", - description="Python MPD client library", + name='python-musicpd', + version='0.3.1', + description='Python MPD client library', long_description=DESCRIPTION, - author="J. Alexander Treuman", - author_email="jat@spatialrift.net", - url="http://jatreuman.indefero.net/p/python-mpd/", - download_url="http://pypi.python.org/pypi/python-mpd/", + author='Kaliko Jack', + author_email='kaliko@azylum.org', + #url="http://jatreuman.indefero.net/p/python-mpd/", + download_url="http://pypi.python.org/pypi/python-musicpd/", py_modules=["mpd"], classifiers=CLASSIFIERS, #license=LICENSE,