mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
49 lines
1.0 KiB
TOML
49 lines
1.0 KiB
TOML
[project]
|
|
name = "browser-use"
|
|
description = "Make websites accessible for AI agents"
|
|
authors = [
|
|
{ name = "Gregor Zunic" }
|
|
]
|
|
version = "0.1.16"
|
|
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" |