-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (38 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "reasonix-computer-use"
version = "0.9.0-preview"
description = "Reasonix Computer Use — cross-platform desktop automation with normalized coordinate protocol, precision-first perception, and local OCR"
requires-python = ">=3.10"
dependencies = [
"Pillow>=10.0.0",
"comtypes>=1.4.0",
"easyocr>=1.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
# Linux (X11) backend: XTEST input injection + X11 screenshot.
# PyGObject (gi) is intentionally NOT listed: the pip build needs cairo/glib
# dev headers; the standard way is the distro package python3-gi
# (Ubuntu/Debian: python3-gi gir1.2-atspi-2.0).
linux = [
"python-xlib>=0.33",
"mss>=9.0",
]
# macOS backend: PyObjC bridges for CoreGraphics (CGEvent input, window
# list), ApplicationServices (AXUIElement accessibility) and Cocoa
# (AppKit's NSRunningApplication/NSScreen live in the Cocoa framework
# package, not a separate pyobjc-framework-AppKit).
macos = [
"pyobjc-framework-Quartz>=9.0",
"pyobjc-framework-ApplicationServices>=9.0",
"pyobjc-framework-Cocoa>=9.0",
"mss>=9.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
reasonix-computer-use = "reasonix_computer_use.mcp_server:main"