This commit is contained in:
dingfeng.wong
2025-07-22 01:51:19 +08:00
parent eb47b6a22d
commit e0e5edbfdc
5 changed files with 688 additions and 28 deletions
+11
View File
@@ -15,6 +15,17 @@ dependencies = [
"rich>=13.0.0",
]
[project.optional-dependencies]
# Cross-platform screenshot libraries
screenshot-fast = ["mss>=7.0.0"] # Fastest screenshot library
screenshot-full = ["pyautogui>=0.9.54"] # Full automation including region selection
screenshot-multi = ["pyscreenshot>=3.1"] # Multiple backend support
screenshot-all = [
"mss>=7.0.0",
"pyautogui>=0.9.54",
"pyscreenshot>=3.1"
] # All screenshot libraries for maximum compatibility
[project.scripts]
ocr-screenshot = "tooling.cli:cli_main"