From 25ebd503a23fe551c9dc9186306dd404db31311c Mon Sep 17 00:00:00 2001 From: Kharec Date: Thu, 11 Dec 2025 11:02:39 +0100 Subject: [PATCH] build: add pyproject.toml --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9ca050f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,9 @@ +[project] +name = "skywipe" +version = "0.1.0" +description = "Clean your bluesky account with style" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "atproto>=0.0.65", +]