Files
browser-cli/pyproject.toml
T
daniel156161 6c90837414
Testing / test (push) Failing after 14s
Testing / remote-protocol-compat (0.9.3) (push) Failing after 16s
Testing / remote-protocol-compat (0.9.5) (push) Successful in 34s
chore: bump version to 0.10.3
Patch bump after the class-based extension refactor (ba01be1) — no
behavior, command, or API change.

Bumped in pyproject.toml, extension/manifest.json and uv.lock.

Verification: uv run browser-cli -V -> 0.10.3; uv run pytest -q -> 409
passed, 105 skipped.
2026-06-11 07:06:09 +02:00

31 lines
567 B
TOML

[project]
name = "browser-cli"
version = "0.10.3"
description = "Control your real running browser from the terminal or Python SDK"
requires-python = ">=3.10"
dependencies = [
"click>=8",
"cryptography>=48",
"rich>=13",
]
[project.scripts]
browser-cli = "browser_cli.cli:main"
[dependency-groups]
dev = [
"pytest>=8",
"pytest-cov>=7.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["browser_cli"]
[tool.pytest.ini_options]
testpaths = ["tests"]
log_level = "INFO"