forked from computer-agents/agent-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (80 loc) · 1.75 KB
/
pyproject.toml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agent_studio"
version = "0.1.1"
requires-python = ">=3.10,<4.0"
dependencies = [
"pynput",
"pydantic",
"opencv-python",
"mss",
"pillow",
"jsonpickle",
"requests",
"tqdm",
"jupyter_client",
"pyautogui",
"cryptography",
# "pyrogram",
"toml",
"urllib3 >= 2.2.3",
"ipykernel",
"google-api-python-client",
"google-auth-oauthlib",
"scikit-image",
"python-docx",
"python-pptx",
"pandas",
"openpyxl",
"odfpy",
"rapidfuzz",
"formulas",
"cssselect",
"xmltodict",
"python-dateutil",
]
[tool.setuptools]
packages = ["agent_studio"]
[project.optional-dependencies]
dev = [
"black==24.8.0",
"flake8==7.0.0",
"flake8-bugbear==24.4.26",
"flake8-quotes==3.3.2",
"mypy==1.8.0",
"mypy-extensions==1.0.0",
"pre-commit==3.6.0",
"pytest==8.3.2",
"types-requests==2.32.0.20240712",
"check-jsonschema==0.29.1",
"jsonschema==4.20.0",
]
server = [
"fastapi",
"uvicorn",
]
client = [
"backoff",
"vncdotool",
"transformers",
"anthropic",
"openai",
"vertexai",
"google-generativeai",
"chime",
"PyQt6",
"PyQt6-QScintilla",
# "torch",
]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
testpaths = ["tests"]
python_files = "test_*.py"
[project.scripts]
as-traj-editor = "agent_studio.apps.trajectory_editor:main"
as-traj-recorder = "agent_studio.apps.trajectory_recorder:main"
as-annotate-ground = "agent_studio.apps.annotate_ground_ui:main"
as-online-benchmark = "agent_studio.apps.online_benchmark:main"