-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (95 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
106 lines (95 loc) · 2.52 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[project]
name = "webprober"
version = "0.1.0"
description = "AI for web testing"
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"anyio>=4.9.0",
"httpx>=0.27.2",
"pydantic>=2.10.4,<2.11.0",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
"posthog>=3.7.0",
"patchright>=1.51.0",
"markdownify==1.1.0",
"langchain-core==0.3.49",
"langchain-openai==0.3.11",
"langchain-anthropic==0.3.3",
"langchain-ollama==0.3.0",
"langchain-google-genai==2.1.2",
"langchain-deepseek>=0.1.3",
"langchain>=0.3.21",
"langchain-aws>=0.2.11",
"google-api-core>=2.24.0",
"pyperclip>=1.9.0",
"pyobjc>=11.0; platform_system == 'darwin'",
"screeninfo>=0.8.1; platform_system != 'darwin'",
"typing-extensions>=4.12.2",
"psutil>=7.0.0",
"mem0ai==0.1.93",
"rich>=14.0.0",
"click>=8.1.8",
"textual>=3.2.0",
"sacred>=0.8.4",
"pyyaml>=6.0.1",
"keyring>=25.6.0",
"cryptography>=45.0.5",
"setuptools>=80.9.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
# Optional dependencies for memory functionality
memory = [
"sentence-transformers>=4.0.2",
]
[project.urls]
Repository = "https://github.com/TianyiPeng/WebProber.git"
[tool.codespell]
ignore-words-list = "bu"
skip = "*.json"
[tool.ruff]
line-length = 130
fix = true
[tool.ruff.lint]
select = ["ASYNC", "E", "F", "FAST", "I", "PLE"]
ignore = ["ASYNC109", "E101", "E402", "E501", "F841", "E731"] # TODO: determine if adding timeouts to all the unbounded async functions is needed / worth-it so we can un-ignore ASYNC109
unfixable = ["E101", "E402", "E501", "F841", "E731"]
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
docstring-code-format = true
[tool.pyright]
typeCheckingMode = "off"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"browser_use/**/*.py",
"!browser_use/**/tests/*.py",
"!browser_use/**/tests.py",
"browser_use/agent/system_prompt.md",
"browser_use/dom/buildDomTree.js",
]
[tool.uv]
dev-dependencies = [
"ruff>=0.11.2",
"tokencost>=0.1.16",
"build>=1.2.2",
"pytest>=8.3.5",
"pytest-asyncio>=0.24.0",
"pytest-httpserver>=1.0.8",
"fastapi>=0.115.8",
"inngest>=0.4.19",
"uvicorn>=0.34.0",
"langchain-fireworks>=0.2.6",
"ipdb>=0.13.13",
"pre-commit>=4.2.0",
"codespell>=2.4.1",
"pyright>=1.1.399",
]