]> kaliko git repositories - python-musicpdaio.git/blobdiff - pyproject.toml
Add project files, license, etc...
[python-musicpdaio.git] / pyproject.toml
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644 (file)
index 0000000..f88f175
--- /dev/null
@@ -0,0 +1,25 @@
+# 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"}