[build-system]
requires = ["setuptools>=80.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "archivebox-api"
version = "0.0.20"
description = "Pythonic ArchiveBox API Wrapper and Fast MCP Server for Agentic AI use!"
readme = "README.md"
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: Public Domain",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.10"
[project.optional-dependencies]
mcp = [
"fastmcp>=3.0.0b1",
"eunomia-mcp>=0.3.10",
"fastapi>=0.128.0"
]
a2a = [
"pydantic-ai-slim[fastmcp,openai,anthropic,google,huggingface,a2a,ag-ui,web]>=1.32.0",
"pydantic-ai-skills",
"fastapi>=0.128.0"
]
all = [
"fastmcp>=3.0.0b1",
"eunomia-mcp>=0.3.10",
"pydantic-ai-slim[fastmcp,openai,anthropic,google,huggingface,a2a,ag-ui,web]>=1.32.0",
"pydantic-ai-skills",
"fastapi>=0.128.0"
]
[project.scripts]
archivebox-mcp = "archivebox_api.archivebox_mcp:archivebox_mcp"
archivebox-agent = "archivebox_api.archivebox_agent:agent_server"
[tool.setuptools.package-data]
archivebox_api = ["mcp_config.json", "skills/**"]
[tool.setuptools.packages.find]
where = ["."]