]> kaliko git repositories - python-musicpd.git/blob - setup.cfg
Swith to SPDX for license headers
[python-musicpd.git] / setup.cfg
1 # SPDX-FileCopyrightText: 2012-2021  kaliko <kaliko@azylum.org>
2 # SPDX-License-Identifier: GPL-3.0-or-later
3 [sdist]
4 formats = gztar,zip
5
6 [metadata]
7 name = python-musicpd
8 description = An MPD (Music Player Daemon) client library written in pure Python.
9 version = attr: musicpd.VERSION
10 long_description =  file: README.rst
11 long_description_content_type = text/x-rst
12 license = LGPLv3
13 license_file = LICENSE.txt
14 author = 'Kaliko Jack'
15 author_email = 'kaliko@azylum.org'
16 url = 'https://kaliko.me/python-musicpd/'
17 download_url = 'https://pypi.org/project/python-musicpd/'
18 keywords = mpd, Music Player Daemon
19 classifiers =
20     "Development Status :: 5 - Production/Stable",
21     "Intended Audience :: Developers",
22     "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
23     "Natural Language :: English",
24     "Operating System :: OS Independent",
25     "Programming Language :: Python :: 3",
26     "Topic :: Software Development :: Libraries :: Python Modules"
27
28 [options]
29 python_requires = >=3.6
30 py_modules = musicpd
31
32 [bdist_wheel]
33 universal = 0
34
35 [build_sphinx]
36 source-dir = doc/source
37 build-dir  = build
38 all_files  = 1
39
40 [pycodestyle]
41 max_line_length = 88