-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 2.01 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 2.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "browser-use-sdk"
version = "3.10.0"
description = "Python SDK for the Browser Use cloud API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"httpx==0.28.1",
"pydantic==2.13.4",
# Security pin on a transitive dependency of httpx.
"idna==3.18", # CVE-2026-45409
]
[project.urls]
Homepage = "https://github.com/browser-use/sdk"
Repository = "https://github.com/browser-use/sdk"
Issues = "https://github.com/browser-use/sdk/issues"
[project.optional-dependencies]
dev = [
# pytest 9.0.3 is the first safe release and requires Python 3.10+.
"pytest==9.1.1; python_version >= '3.10'", # CVE-2025-71176
"pyright==1.1.411",
]
examples = [
# python-dotenv 1.2.2 is the first safe release and requires Python 3.10+.
"python-dotenv==1.2.2; python_version >= '3.10'", # CVE-2026-28684
]
# Pay for API access with USDC instead of an API key. Requires Python 3.10+.
# Install with: pip install "browser-use-sdk[x402]"
x402 = [
"x402[evm]==2.17.0; python_version >= '3.10'",
# Security pin on a transitive dep (x402[evm] -> web3 -> requests -> urllib3).
# Published in the extra so it reaches consumers, not just this repo's lockfile.
"urllib3==2.7.0; python_version >= '3.10'", # CVE-2026-44431, CVE-2026-44432
# Security pin on a transitive dep (x402[evm] -> web3 -> aiohttp).
# CVE-2026-34993, CVE-2026-47265, CVE-2026-54273, CVE-2026-54274,
# CVE-2026-54276, CVE-2026-54277, CVE-2026-54278
"aiohttp==3.14.3; python_version >= '3.10'",
]
[tool.hatch.build.targets.wheel]
packages = ["src/browser_use_sdk"]
[tool.pytest.ini_options]
markers = [
"prod: production smoke tests (hit real API)",
"live: live integration tests (hit localhost)",
]
[tool.pyright]
pythonVersion = "3.9"
typeCheckingMode = "basic"
include = ["src", "tests", "examples"]
[dependency-groups]
dev = [
"pyright==1.1.411",
"pytest==9.1.1; python_version >= '3.10'", # CVE-2025-71176
]