7fe0e27fec
- Add auth policy to update existing authorized_keys allow policies locally or over remote serve. - Support key lookup by public key or exact name, with safe, all, server-default, and category-based modes. - Add questionary-powered interactive key selection and checkbox policy editing with current policy preselected. - Show policy descriptions in auth keys output so each capability is easier to understand. - Gate the new remote control command behind the existing keys policy category and include protocol routing/compat updates. - Bump real-browser-cli to 0.16.2 and lock the new questionary dependency. - Cover local, remote, validation, and policy-category behavior in tests.
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[project]
|
|
name = "real-browser-cli"
|
|
version = "0.16.2"
|
|
description = "Control your real running browser from the terminal or Python SDK"
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
authors = [{ name = "Daniel Dolezal" }]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"click>=8",
|
|
"cryptography>=48",
|
|
"rich>=13",
|
|
"msgpack>=1",
|
|
"questionary>=2",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.yiprawr.dev/Automatisation/browser-cli"
|
|
Repository = "https://git.yiprawr.dev/Automatisation/browser-cli"
|
|
Issues = "https://git.yiprawr.dev/Automatisation/browser-cli/issues"
|
|
|
|
[project.optional-dependencies]
|
|
# Better/faster remote response compression than the stdlib zlib/gzip fallback.
|
|
fast = ["zstandard>=0.22"]
|
|
|
|
[project.scripts]
|
|
browser-cli = "browser_cli.cli:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8",
|
|
"pytest-cov>=7.1.0",
|
|
"zstandard>=0.22",
|
|
]
|
|
|
|
[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"
|