init commit

This commit is contained in:
2026-04-08 21:17:59 +02:00
commit 178b7bf7a2
24 changed files with 2466 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[project]
name = "browser-cli"
version = "0.1.0"
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"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["browser_cli"]