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