]> kaliko git repositories - python-musicpd.git/blob - pyproject.toml
Releasing 0.9.0
[python-musicpd.git] / pyproject.toml
1 # SPDX-FileCopyrightText: 2023  kaliko <kaliko@azylum.org>
2 # SPDX-License-Identifier: LGPL-3.0-or-later
3 [project]
4 name = "python-musicpd"
5 keywords = ["mpd", "Music Player Daemon"]
6 description = "An MPD (Music Player Daemon) client library written in pure Python."
7 authors = [
8   { name="Kaliko Jack", email="kaliko@azylum.org" },
9 ]
10 license = {file = "LICENSE.txt"}
11 readme = "README.rst"
12 requires-python = ">=3.6"
13 classifiers = [
14     "Development Status :: 5 - Production/Stable",
15     "Intended Audience :: Developers",
16     "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
17     "Natural Language :: English",
18     "Operating System :: OS Independent",
19     "Programming Language :: Python :: 3",
20     "Topic :: Software Development :: Libraries :: Python Modules",
21 ]
22 dynamic = ["version"]
23
24 [project.optional-dependencies]
25 sphinx = ["Sphinx>=5.3.0"]
26
27 [project.urls]
28 "Homepage" = "https://kaliko.me/python-musicpd/"
29
30 [build-system]
31 requires = ["setuptools>=61.0.0"]
32
33 [tool.setuptools]
34 py-modules = ["musicpd"]
35
36 [tool.setuptools.dynamic]
37 version = {attr = "musicpd.VERSION"}