1 #! /usr/bin/env python3
4 from setuptools import setup
6 from musicpd import VERSION
9 An MPD (Music Player Daemon) client library written in pure Python.\
13 with open('README.rst', encoding='UTF-8') as file:
14 LONG_DESCRIPTION = file.read()
17 "Development Status :: 5 - Production/Stable",
18 "Intended Audience :: Developers",
19 "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
20 "Natural Language :: English",
21 "Operating System :: OS Independent",
22 "Programming Language :: Python :: 3",
23 "Topic :: Software Development :: Libraries :: Python Modules",
28 name='python-musicpd',
30 description=DESCRIPTION,
31 long_description=LONG_DESCRIPTION,
33 author_email='kaliko@azylum.org',
34 url='https://kaliko.me/python-musicpd/',
35 download_url='https://pypi.org/project/python-musicpd/'
36 py_modules=['musicpd'],
37 classifiers=CLASSIFIERS,
39 keywords=['mpd', 'Music Player Daemon'],
40 platforms=['Independant'],
44 # vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: