]> kaliko git repositories - python-musicpd.git/blobdiff - setup.py
Move everything to setup.cfg
[python-musicpd.git] / setup.py
index 9b6a127b9679f6eb8162eab0eb02acac6869fa6d..e2e8805e3d0072e067ab03b956b4da3cb3fe45c8 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,43 +3,6 @@
 
 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,
-    long_description_content_type='text/x-rst',
-    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: