]> kaliko git repositories - python-musicpd.git/blob - setup.py
Update copyrights, add missing author cf. 08f2371
[python-musicpd.git] / setup.py
1 #! /usr/bin/env python3
2 # coding: utf-8
3
4 from setuptools import setup
5
6 from musicpd import VERSION
7
8 DESCRIPTION = """\
9 An MPD (Music Player Daemon) client library written in pure Python.\
10 """
11
12
13 with open('README.rst', encoding='UTF-8') as file:
14     LONG_DESCRIPTION = file.read()
15
16 CLASSIFIERS = [
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",
24 ]
25
26
27 setup(
28     name='python-musicpd',
29     version=VERSION,
30     description=DESCRIPTION,
31     long_description=LONG_DESCRIPTION,
32     long_description_content_type='text/x-rst',
33     author='Kaliko Jack',
34     author_email='kaliko@azylum.org',
35     url='https://kaliko.me/python-musicpd/',
36     download_url='https://pypi.org/project/python-musicpd/',
37     py_modules=['musicpd'],
38     classifiers=CLASSIFIERS,
39     license='LGPLv3+',
40     keywords=['mpd', 'Music Player Daemon'],
41     platforms=['Independant'],
42 )
43
44
45 # vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: