From e07842ac4b4f2a986f4e31b233a8d97594688bda Mon Sep 17 00:00:00 2001 From: Abdessamad Derraz <3028866+Abdess@users.noreply.github.com> Date: Sat, 28 Mar 2026 12:33:00 +0100 Subject: [PATCH] chore: add pyproject.toml for uv/pip compatibility --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..f655f75b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[project] +name = "retrobios" +version = "1.0.0" +description = "BIOS collection manager for retrogaming platforms" +requires-python = ">=3.10" +dependencies = [ + "pyyaml", +] + +[project.urls] +Repository = "https://github.com/Abdess/retrobios"