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