1#! /usr/bin/env python
2
3from distutils.core import setup
4
5
6DESCRIPTION = """\
7An MPD (Music Player Daemon) client library written in pure Python.\
8"""
9
10CLASSIFIERS = [
11    "Development Status :: 5 - Production/Stable",
12    "Intended Audience :: Developers",
13    "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
14    "Natural Language :: English",
15    "Operating System :: OS Independent",
16    "Programming Language :: Python",
17    "Topic :: Software Development :: Libraries :: Python Modules",
18]
19
20LICENSE = """\
21Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
22
23python-mpd is free software: you can redistribute it and/or modify
24it under the terms of the GNU Lesser General Public License as published by
25the Free Software Foundation, either version 3 of the License, or
26(at your option) any later version.
27
28python-mpd is distributed in the hope that it will be useful,
29but WITHOUT ANY WARRANTY; without even the implied warranty of
30MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31GNU Lesser General Public License for more details.
32
33You should have received a copy of the GNU Lesser General Public License
34along with python-mpd.  If not, see <http://www.gnu.org/licenses/>.\
35"""
36
37
38setup(
39    name="python-mpd",
40    version="0.3.0",
41    description="Python MPD client library",
42    long_description=DESCRIPTION,
43    author="J. Alexander Treuman",
44    author_email="jat@spatialrift.net",
45    url="http://jatreuman.indefero.net/p/python-mpd/",
46    download_url="http://pypi.python.org/pypi/python-mpd/",
47    py_modules=["mpd"],
48    classifiers=CLASSIFIERS,
49    #license=LICENSE,
50    keywords=["mpd"],
51    #platforms=["Independant"],
52)
53
54
55# vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79:
56