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