]> kaliko git repositories - python-musicpd.git/blob - setup.py
setup.py: incrementing version number to 0.2.0
[python-musicpd.git] / setup.py
1 #! /usr/bin/env python
2
3 from distutils.core import setup
4
5
6 DESCRIPTION = """\
7 An MPD (Music Player Daemon) client library written in pure Python.\
8 """
9
10 CLASSIFIERS = [
11     "Development Status :: 4 - Beta",
12     "Intended Audience :: Developers",
13     "License :: OSI Approved :: GNU General Public License (GPL)",
14     "Natural Language :: English",
15     "Operating System :: OS Independent",
16     "Programming Language :: Python",
17     "Topic :: Software Development :: Libraries :: Python Modules",
18 ]
19
20 LICENSE = """\
21 Copyright (C) 2008  J. Alexander Treuman <jat@spatialrift.net>
22
23 This program is free software: you can redistribute it and/or modify
24 it under the terms of the GNU General Public License as published by
25 the Free Software Foundation, either version 3 of the License, or
26 (at your option) any later version.
27
28 This program is distributed in the hope that it will be useful,
29 but WITHOUT ANY WARRANTY; without even the implied warranty of
30 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31 GNU General Public License for more details.
32
33 You should have received a copy of the GNU General Public License
34 along with this program.  If not, see <http://www.gnu.org/licenses/>.\
35 """
36
37
38 setup(
39     name="python-mpd",
40     version="0.2.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://www.musicpd.org/~jat/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: