From e977408ea27b98edfa0629da19f744a23bf34980 Mon Sep 17 00:00:00 2001 From: omokami Date: Mon, 12 May 2025 06:27:57 +0900 Subject: [PATCH 1/2] chore: update pyproject.toml dependencies --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9dd22b5..437abeb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,14 @@ test = [ "mcp[cli]", ] +recorder = [ + "pynput>=1.7.6", + "mss>=6.1.0", + "pillow>=10.0.0", + "loguru>=0.6.0", +] + + # Add Ruff configuration if you want to manage it here # [tool.ruff] # line-length = 88 From c280f50ae42bfdd6c0826cb2d1667a2a247bdc23 Mon Sep 17 00:00:00 2001 From: omokami Date: Mon, 12 May 2025 13:50:34 +0900 Subject: [PATCH 2/2] Rename optional dependency group to 'record' --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 437abeb..48242bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ test = [ "mcp[cli]", ] -recorder = [ +record = [ "pynput>=1.7.6", "mss>=6.1.0", "pillow>=10.0.0",