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