]> kaliko git repositories - python-musicpdaio.git/blob - pyproject.toml
Fixed unused argument
[python-musicpdaio.git] / pyproject.toml
1 # SPDX-FileCopyrightText: 2023-2027  kaliko <kaliko@azylum.org>
2 # SPDX-License-Identifier: LGPL-3.0-or-later
3 [project]
4 name = "mpddaio"
5 keywords = ["mpd", "Music Player Daemon"]
6 description = "An MPD (Music Player Daemon) client library written in Python."
7 authors = [
8   { name="kaliko", email="kaliko@azylum.org" },
9 ]
10 license = {file = "LICENSE.txt"}
11 readme = "README.rst"
12 requires-python = ">=3.11"
13 dynamic = ["version"]
14
15 [project.optional-dependencies]
16 sphinx = ["Sphinx>=5.3.0"]
17
18 [project.urls]
19 "Homepage" = "https://kaliko.me/musicpdaio/"
20
21 [build-system]
22 requires = ["setuptools>=61.0.0"]
23
24 [tool.setuptools.dynamic]
25 version = {attr = "mpdaio.const.VERSION"}