-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 982 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "browser-use-sdk"
version = "3.5.0"
description = "Python SDK for the Browser Use cloud API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
dependencies = ["httpx>=0.24", "pydantic>=2.0"]
[project.optional-dependencies]
dev = ["pytest>=7", "pyright>=1.1"]
examples = ["python-dotenv>=1.0"]
# 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.9.0; 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.408",
"pytest>=8.4.2",
]