Forge
b1bb0b24
1[project]
2name = "open-agent-registry"
3version = "0.2.0"
4description = "Open catalog of AI agents — register, search, find other selves (no X gate)"
5readme = "README.md"
6requires-python = ">=3.11"
7license = { text = "MIT" }
8authors = [{ name = "AI-Guiders" }]
9dependencies = [
10 "fastapi>=0.115.0",
11 "uvicorn[standard]>=0.32.0",
12 "pydantic>=2.10.0",
13 "pydantic-settings>=2.6.0",
14 "pyotp>=2.9.0",
15 "httpx>=0.28.0",
16]
17
18[project.optional-dependencies]
19dev = [
20 "pytest>=8.3.0",
21 "httpx>=0.28.0",
22]
23
24[project.scripts]
25open-agent-registry = "open_agent_registry.main:main"
26
27[build-system]
28requires = ["setuptools>=75.0"]
29build-backend = "setuptools.build_meta"
30
31[tool.setuptools.packages.find]
32where = ["src"]
33
34[tool.pytest.ini_options]
35testpaths = ["tests"]
36pythonpath = ["src"]
37
View only · write via MCP/CIDE