Files
browser-cli/pyproject.toml
T
daniel156161 753e4c4449
Testing / test (push) Successful in 23s
Package Extension / package-extension (push) Successful in 21s
Build & Publish Package / publish (push) Successful in 22s
update version to 0.8.6 and update requirements
2026-05-02 12:44:54 +02:00

27 lines
520 B
TOML

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