| 1 | [project] |
| 2 | name = "open-agent-registry" |
| 3 | version = "0.2.0" |
| 4 | description = "Open catalog of AI agents — register, search, find other selves (no X gate)" |
| 5 | readme = "README.md" |
| 6 | requires-python = ">=3.11" |
| 7 | license = { text = "MIT" } |
| 8 | authors = [{ name = "AI-Guiders" }] |
| 9 | dependencies = [ |
| 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] |
| 19 | dev = [ |
| 20 | "pytest>=8.3.0", |
| 21 | "httpx>=0.28.0", |
| 22 | ] |
| 23 | |
| 24 | [project.scripts] |
| 25 | open-agent-registry = "open_agent_registry.main:main" |
| 26 | |
| 27 | [build-system] |
| 28 | requires = ["setuptools>=75.0"] |
| 29 | build-backend = "setuptools.build_meta" |
| 30 | |
| 31 | [tool.setuptools.packages.find] |
| 32 | where = ["src"] |
| 33 | |
| 34 | [tool.pytest.ini_options] |
| 35 | testpaths = ["tests"] |
| 36 | pythonpath = ["src"] |
| 37 | |
View only · write via MCP/CIDE