X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=06924ade4e6639c1098b5ccc441991199d97331d;hp=81c1276a03afb5f7f6aeef3380f4c9c786ad3dc8;hb=HEAD;hpb=4fdeb581beba85d9157fac917c48ae08dda4c941 diff --git a/setup.py b/setup.py deleted file mode 100644 index 81c1276..0000000 --- a/setup.py +++ /dev/null @@ -1,61 +0,0 @@ -#! /usr/bin/env python3 - -from distutils.core import setup - -from musicpd import VERSION - -DESCRIPTION = """\ -An MPD (Music Player Daemon) client library written in pure Python.\ -""" - - -with open('README.txt') as file: - LONG_DESCRIPTION = file.read() - -CLASSIFIERS = [ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", - "Natural Language :: English", - "Operating System :: OS Independent", - "Programming Language :: Python :: 3", - "Topic :: Software Development :: Libraries :: Python Modules", -] - -LICENSE = """\ -Copyright (C) 2008-2010 J. Alexander Treuman -Copyright (C) 2012-2013 Kaliko Jack - -python-musicpd is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -python-musicpd is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public License -along with python-musicpd. If not, see .\ -""" - - -setup( - name='python-musicpd', - version=VERSION, - description=DESCRIPTION, - long_description=LONG_DESCRIPTION, - author='Kaliko Jack', - author_email='kaliko@azylum.org', - url="http://kaliko.me/code/python-musicpd", - download_url="http://pypi.python.org/pypi/python-musicpd/", - py_modules=["musicpd"], - classifiers=CLASSIFIERS, - license=LICENSE, - keywords=["mpd"], - platforms=["Independant"], -) - - -# vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: