X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=84eaff9390bd99f01aa1e2b03c4ed0df7a89f30c;hp=507050fb86e8e4c265c16eddec1cacd541aaca39;hb=57628d1d2e54b60c27ff5bcf60c6d17beeffc22c;hpb=0dfcd8a5c40c7bbed2e7e59a60bcbe046ee2b7af diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 507050f..84eaff9 --- a/setup.py +++ b/setup.py @@ -1,55 +1,10 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 +# coding: utf-8 +# SPDX-FileCopyrightText: 2012-2021 kaliko +# SPDX-License-Identifier: GPL-3.0-or-later -from distutils.core import setup - - -DESCRIPTION = """\ -An MPD (Music Player Daemon) client library written in pure Python.\ -""" - -CLASSIFIERS = [ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "License :: OSI Approved :: GNU General Public License (GPL)", - "Natural Language :: English", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Topic :: Software Development :: Libraries :: Python Modules", -] - -LICENSE = """\ -Copyright (C) 2008-2010 J. Alexander Treuman - -python-mpd 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-mpd 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-mpd. If not, see .\ -""" - - -setup( - name="python-mpd", - version="0.2.1", - description="Python MPD client library", - long_description=DESCRIPTION, - author="J. Alexander Treuman", - author_email="jat@spatialrift.net", - url="http://jatreuman.indefero.net/p/python-mpd/", - download_url="http://pypi.python.org/pypi/python-mpd/", - py_modules=["mpd"], - classifiers=CLASSIFIERS, - #license=LICENSE, - keywords=["mpd"], - #platforms=["Independant"], -) +from setuptools import setup +setup() # vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: