]> kaliko git repositories - python-musicpd.git/blob - setup.py
Fixed py_modules in setup.py
[python-musicpd.git] / setup.py
1 #! /usr/bin/env python3
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 :: 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 :: 3",
17     "Topic :: Software Development :: Libraries :: Python Modules",
18 ]
19
20 LICENSE = """\
21 Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
22 Copyright (C) 2012-2013  Kaliko Jack <kaliko@azylum.org>
23
24 python-musicpd is free software: you can redistribute it and/or modify
25 it under the terms of the GNU Lesser General Public License as published by
26 the Free Software Foundation, either version 3 of the License, or
27 (at your option) any later version.
28
29 python-musicpd is distributed in the hope that it will be useful,
30 but WITHOUT ANY WARRANTY; without even the implied warranty of
31 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32 GNU Lesser General Public License for more details.
33
34 You should have received a copy of the GNU Lesser General Public License
35 along with python-musicpd.  If not, see <http://www.gnu.org/licenses/>.\
36 """
37
38
39 setup(
40     name='python-musicpd',
41     version='0.3.1',
42     description='Python MPD client library',
43     long_description=DESCRIPTION,
44     author='Kaliko Jack',
45     author_email='kaliko@azylum.org',
46     #url="http://jatreuman.indefero.net/p/python-mpd/",
47     download_url="http://pypi.python.org/pypi/python-musicpd/",
48     py_modules=["musicpd"],
49     classifiers=CLASSIFIERS,
50     #license=LICENSE,
51     keywords=["mpd"],
52     #platforms=["Independant"],
53 )
54
55
56 # vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: