Files
browser-cli/pyproject.toml
T
daniel156161 a1038d5817
Testing / test (push) Successful in 39s
Package Extension / package-extension (push) Successful in 23s
Build & Publish Package / publish (push) Successful in 33s
fix that alias can only exist once and when dublicate give error
2026-04-12 17:31:49 +02:00

27 lines
519 B
TOML

[project]
name = "browser-cli"
version = "0.5.7"
description = "Control your real running browser from the terminal via a Chrome 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"