forked from arcprize/ARC-AGI-3-Agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 818 Bytes
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
[project]
name = "arc-agi-3-agents"
version = "0.1.0"
description = "ARC-AGI-3-Agents"
readme = "readme.md"
requires-python = ">=3.12"
dependencies = [
"arc-agi>=0.9.1",
"dotenv>=0.9.9",
"langchain[openai]>=0.3.27",
"langgraph>=0.6.3",
"langgraph-checkpoint-sqlite>=2.0.11",
"numpy>=2.3.2",
"openai==1.72.0",
"pillow>=11.2.1",
"pydantic>=2.11.7",
"requests>=2.32.4",
"smolagents>=1.20.0",
]
[dependency-groups]
dev = [
"mypy>=1.15.0",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"requests-mock>=1.12.1",
"ruff>=0.11.4",
]
[project.optional-dependencies]
agentops = [
"agentops>=0.4.18",
]
[tool.mypy]
strict = true
disallow_untyped_defs = true
exclude = [
"tests",
]
plugins = []
[tool.ruff.lint]
extend-select = ["I"]