--- /dev/null
+Music Player Daemon client module
+*********************************
+
+An asynchronous MPD (Music Player Daemon) client library written in Python.
+
+----
+
+:MPD Protocol: https://www.musicpd.org/doc/html/protocol.html
+:Code: https://codeberg.org/MusicPlayerDaemon/python-musicpdaio.git
+:Dependencies: None
+:Compatibility: Python 3.11+
+:Licence: GNU LGPLv3
+
+.. vim: spell spelllang=en
--- /dev/null
+# SPDX-FileCopyrightText: 2023-2027 kaliko <kaliko@azylum.org>
+# SPDX-License-Identifier: LGPL-3.0-or-later
+[project]
+name = "mpddaio"
+keywords = ["mpd", "Music Player Daemon"]
+description = "An MPD (Music Player Daemon) client library written in Python."
+authors = [
+ { name="kaliko", email="kaliko@azylum.org" },
+]
+license = {file = "LICENSE.txt"}
+readme = "README.rst"
+requires-python = ">=3.11"
+dynamic = ["version"]
+
+[project.optional-dependencies]
+sphinx = ["Sphinx>=5.3.0"]
+
+[project.urls]
+"Homepage" = "https://kaliko.me/musicpdaio/"
+
+[build-system]
+requires = ["setuptools>=61.0.0"]
+
+[tool.setuptools.dynamic]
+version = {attr = "mpdaio.VERSION"}