Files
browser-cli/pyproject.toml
T
daniel156161 b87f536ecd
Testing / test (push) Failing after 11m6s
chore: bump version to 0.9.1
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-02 19:56:39 +02:00

28 lines
544 B
TOML

[project]
name = "browser-cli"
version = "0.9.1"
description = "Control your real running browser from the terminal via a browser extension"
requires-python = ">=3.10"
dependencies = [
"click>=8",
"cryptography>=42",
"rich>=13",
]
[project.scripts]
browser-cli = "browser_cli.cli:main"
[dependency-groups]
dev = ["pytest>=8"]
[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"