-
Notifications
You must be signed in to change notification settings - Fork 246
/
pyproject.toml
49 lines (45 loc) · 1.03 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
[project]
name = "browser-use"
description = "Make websites accessible for AI agents"
authors = [
{ name = "Gregor Zunic" }
]
version = "0.1.17"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"MainContentExtractor>=0.0.4",
"beautifulsoup4>=4.12.3",
"httpx==0.27.2",
"langchain>=0.3.9",
"langchain-openai>=0.2.10",
"langchain-anthropic>=0.3.0",
"langchain-fireworks>=0.2.5",
"pydantic>=2.10.2",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
"posthog>=3.7.4",
"playwright>=1.49.0"
]
[project.optional-dependencies]
dev = [
"tokencost>=0.1.16",
"hatch>=1.13.0",
"build>=1.2.2",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0"
]
[tool.ruff]
line-length = 100
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
docstring-code-format = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"