X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=06924ade4e6639c1098b5ccc441991199d97331d;hp=c730ae7d6a3df5a707552a7ce3e596570efd18c9;hb=HEAD;hpb=a7c3a77bd98c747a86200f8f85ac418c0eeea9ac diff --git a/setup.py b/setup.py deleted file mode 100755 index c730ae7..0000000 --- a/setup.py +++ /dev/null @@ -1,44 +0,0 @@ -#! /usr/bin/env python3 -# coding: utf-8 - -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'], -) - - -# vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: