X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=84eaff9390bd99f01aa1e2b03c4ed0df7a89f30c;hp=b6fd5256e890a1b83dd26813a953f441dc2fc67c;hb=57628d1d2e54b60c27ff5bcf60c6d17beeffc22c;hpb=047a026f18db8594185e071a43bced9044bb9306 diff --git a/setup.py b/setup.py index b6fd525..84eaff9 100755 --- a/setup.py +++ b/setup.py @@ -1,44 +1,10 @@ #! /usr/bin/env python3 # coding: utf-8 +# SPDX-FileCopyrightText: 2012-2021 kaliko +# SPDX-License-Identifier: GPL-3.0-or-later from setuptools import setup -from musicpd import VERSION - -DESCRIPTION = """\ -An MPD (Music Player Daemon) client library written in pure Python.\ -""" - - -with open('README.rst', encoding='UTF-8') 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", -] - - -setup( - name='python-musicpd', - version=VERSION, - description=DESCRIPTION, - long_description=LONG_DESCRIPTION, - author='Kaliko Jack', - author_email='kaliko@azylum.org', - url='https://kaliko.me/python-musicpd/', - download_url='https://pypi.org/project/python-musicpd/', - py_modules=['musicpd'], - classifiers=CLASSIFIERS, - license='LGPLv3+', - keywords=['mpd', 'Music Player Daemon'], - platforms=['Independant'], -) - +setup() # vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: