Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ __pycache__/
*.pyc
.env
.arche
.pytest_cache
.pytest_cache*.egg-info/
29 changes: 15 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "browser-host"
version = "1.0.0"
description = "Browser automation via Chrome DevTools Protocol"
name = "arche"
version = "0.3.0"
description = "Long-lived coding agent for Claude Code"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "Your Name", email = "your@email.com"}
{name = "GizAI"}
]
keywords = ["browser", "automation", "chrome", "cdp", "devtools", "selenium", "puppeteer"]
keywords = ["agent", "coding", "claude", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand All @@ -24,24 +24,25 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
"Topic :: Internet :: WWW/HTTP :: Browsers",
]
dependencies = [
"websocket-client>=1.0.0",
"requests>=2.20.0",
"typer>=0.9.0",
"pyyaml>=6.0",
"jinja2>=3.0",
"claude-agent-sdk>=0.1.0",
]

[project.optional-dependencies]
dev = ["pytest", "black", "mypy"]
server = ["fastapi", "uvicorn", "websockets"]

[project.scripts]
browser-host = "browser.host:main"
arche = "arche.cli:app"

[project.urls]
Homepage = "https://github.com/yourname/browser-host"
Issues = "https://github.com/yourname/browser-host/issues"
Homepage = "https://github.com/GizAI/arche"
Issues = "https://github.com/GizAI/arche/issues"

[tool.setuptools.packages.find]
where = ["."]
include = ["browser*"]
where = ["src"]
include = ["arche*"]