-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (66 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools==84.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-browser"
version = "0.2.2"
description = "Self-hosted Chrome runtime for AI agents with API control and a live noVNC view."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "Aether AI" }]
keywords = ["browser", "automation", "agents", "chrome", "novnc", "self-hosted"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Typing :: Typed",
]
dependencies = [
"fastapi==0.141.1",
"httpx==0.28.1",
"patchright==1.62.2",
"pydantic==2.13.5",
"uvicorn[standard]==0.52.4",
]
[project.optional-dependencies]
dev = [
"bandit==1.9.4",
"mypy==2.3.1",
"pip-audit==2.10.1",
"pytest==9.1.1",
"pytest-asyncio==1.4.0",
"pytest-cov==7.1.0",
"ruff==0.16.5",
]
[project.urls]
Homepage = "https://github.com/AetherAI3/agent-browser"
Repository = "https://github.com/AetherAI3/agent-browser"
Issues = "https://github.com/AetherAI3/agent-browser/issues"
Changelog = "https://github.com/AetherAI3/agent-browser/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "ASYNC", "S"]
ignore = ["S101"]
[tool.mypy]
python_version = "3.11"
strict = true
packages = ["agent_browser"]
mypy_path = "src"
plugins = ["pydantic.mypy"]
[tool.pydantic-mypy]
init_forbid_extra = true
warn_required_dynamic_aliases = true