Files
browser-cli/pyproject.toml
T
daniel156161 94c87e244b
Testing / test (push) Successful in 21s
Package Extension / package-extension (push) Successful in 18s
Build & Publish Package / publish (push) Successful in 29s
Encrypt remote transport with post-quantum session keys
2026-05-05 10:49:38 +02:00

28 lines
544 B
TOML

[project]
name = "browser-cli"
version = "0.9.5"
description = "Control your real running browser from the terminal via a browser extension"
requires-python = ">=3.10"
dependencies = [
"click>=8",
"cryptography>=48",
"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"