pyautogui>=0.9.54
# macOS backends: Quartz drives the mouse, Cocoa (AppKit) raises the browser
# window without needing AppleScript automation permission.
pyobjc-core>=10.0; sys_platform == "darwin"
pyobjc-framework-Quartz>=10.0; sys_platform == "darwin"
pyobjc-framework-Cocoa>=10.0; sys_platform == "darwin"
# Linux: pyautogui drives X11 through Xlib. Raising the browser window is done
# with xdotool, which is an apt package rather than a wheel - setup-linux.sh
# installs it.
python-xlib>=0.33; sys_platform == "linux"
