-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.1 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
42
43
44
45
46
47
48
49
[project]
name = "lightguiagent"
version = "0.1.0"
description = "Lightweight GUI Automation Agent with Grid-Based Visual Grounding"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
keywords = ["gui", "automation", "agent", "claude", "vision", "grid", "android", "adb"]
dependencies = [
"anthropic>=0.40.0",
"jsonlines>=4.0.0",
"pillow>=11.0.0",
"python-dotenv>=1.2.1",
"pyyaml>=6.0",
"pydantic>=2.10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.8.0",
"black>=24.0.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/LightGUIAgent"
Repository = "https://github.com/yourusername/LightGUIAgent"
Documentation = "https://github.com/yourusername/LightGUIAgent#readme"
Issues = "https://github.com/yourusername/LightGUIAgent/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
target-version = "py312"
exclude = ["bin/"] # Binary files
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
[dependency-groups]
dev = [
"ruff>=0.14.14",
]