2026-04-17 18:21:50 -07:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=69"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
2026-04-16 17:51:31 -07:00
|
|
|
[project]
|
2026-04-20 12:49:07 -07:00
|
|
|
name = "browser-harness"
|
2026-04-16 17:51:31 -07:00
|
|
|
version = "0.1.0"
|
2026-04-17 20:50:33 -07:00
|
|
|
description = "The simplest, thinnest, and most powerful harness to control your real browser with your agent."
|
2026-04-16 17:51:31 -07:00
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = [
|
2026-04-18 21:47:40 -07:00
|
|
|
"cdp-use==1.4.5",
|
2026-04-20 12:49:07 -07:00
|
|
|
"fetch-use==0.4.0",
|
2026-04-27 12:08:40 -07:00
|
|
|
"pillow==12.2.0",
|
2026-04-23 07:46:36 -07:00
|
|
|
"websockets==15.0.1",
|
2026-04-16 17:51:31 -07:00
|
|
|
]
|
2026-04-17 18:21:50 -07:00
|
|
|
|
|
|
|
|
[project.scripts]
|
2026-04-28 15:38:11 +05:30
|
|
|
browser-harness = "browser_harness.run:main"
|
2026-04-17 18:21:50 -07:00
|
|
|
|
|
|
|
|
[tool.setuptools]
|
2026-04-28 15:38:11 +05:30
|
|
|
package-dir = {"" = "src"}
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
pythonpath = ["src"]
|