X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=06924ade4e6639c1098b5ccc441991199d97331d;hp=20ab4e1f561934756718710cfe84f739e57f284e;hb=HEAD;hpb=14b0a281fe7e0a05c2cf2aa912c1008eafeba6a5 diff --git a/setup.py b/setup.py deleted file mode 100644 index 20ab4e1..0000000 --- a/setup.py +++ /dev/null @@ -1,55 +0,0 @@ -#! /usr/bin/env python - -from distutils.core import setup - - -DESCRIPTION = """\ -An MPD (Music Player Daemon) client library written in pure Python.\ -""" - -CLASSIFIERS = [ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "License :: OSI Approved :: GNU General Public License (GPL)", - "Natural Language :: English", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Topic :: Software Development :: Libraries :: Python Modules", -] - -LICENSE = """\ -Copyright (C) 2008 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 -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, -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. - -You should have received a copy of the GNU General Public License -along with this program. If not, see .\ -""" - - -setup( - name="python-mpd", - 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/", - download_url="http://pypi.python.org/pypi/python-mpd/", - py_modules=["mpd"], - classifiers=CLASSIFIERS, - #license=LICENSE, - keywords=["mpd"], - #platforms=["Independant"], -) - - -# vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: