-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.06 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
50
[project]
name = "surfy"
version = "0.1.0"
description = "Hierarchical browser automation agent with Plan Anchor"
requires-python = ">=3.11"
dependencies = [
"langgraph>=1.0.8",
"langchain-core>=0.3",
"langchain-anthropic>=0.3",
"browser-use>=0.11,<1.0",
"pydantic>=2.7",
"pydantic-settings>=2.0",
"dependency-injector>=4.41",
"ddgs>=9.11.2",
"duckduckgo-search>=8.1.1",
"langchain>=1.2.10",
"langchain-openai>=1.1.9",
"langgraph-cli[inmem]>=0.4.15",
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"websockets>=14.0",
]
[dependency-groups]
dev = [
"pyright>=1.1.408",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.1",
]
[tool.setuptools.packages.find]
include = ["surfy*"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"real: marks tests that require real Chrome and API keys (deselect with '-m \"not real\"')",
]
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "basic"