-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "openbrowser-broker"
version = "0.1.0"
description = "Open-source browser infrastructure for AI agents with persistent Chrome profiles, human auth handoff, remote API, and MCP tools."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
keywords = [
"browser automation",
"mcp",
"openbrowser",
"browser-use",
"playwright",
"chrome cdp",
"ai agents",
"persistent browser profiles",
"proxy browser",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fastapi>=0.128.0",
"uvicorn>=0.39.0",
"playwright>=1.50.0",
"websockets>=16.0",
"mcp>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/floomhq/openbrowser"
Documentation = "https://github.com/floomhq/openbrowser#readme"
Issues = "https://github.com/floomhq/openbrowser/issues"
[project.scripts]
openbrowser-broker = "ax_browser_broker.api:main"
openbrowser-mcp = "ax_browser_broker.mcp_server:main"
openbrowser-remote-mcp = "ax_browser_broker.remote_mcp_server:main"
openbrowser-audit = "ax_browser_broker.audit:main"
openbrowser-use = "ax_browser_broker.adapters:main_browser_use"
openbrowser-adapter = "ax_browser_broker.adapters:main_openbrowser"
openbrowser-proxy-forwarder = "ax_browser_broker.proxy_forwarder:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.setuptools.packages.find]
include = ["ax_browser_broker*"]
[tool.setuptools.package-data]
ax_browser_broker = ["static/brand/**/*", "browser_pool/bin/*"]