Files
aitbc/apps/coordinator-api/pyproject.toml
aitbc a31258cc2d Remove duplicate dependencies from app-specific pyproject.toml files
- Updated all 6 app pyproject.toml files to reference root dependencies
- coordinator-api, blockchain-node, wallet, agent-coordinator, pool-hub, blockchain-event-bridge
- Kept package structure definitions and local path dependencies
- This completes dependency consolidation to single source of truth at root
2026-04-30 10:47:50 +02:00

21 lines
550 B
TOML

[tool.poetry]
name = "aitbc-coordinator-api"
version = "v0.2.3"
description = "AITBC Coordinator API service"
authors = ["AITBC Team"]
packages = [
{ include = "app", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.13"
# All dependencies managed centrally in root pyproject.toml
# This file only defines package structure for the coordinator-api
[tool.poetry.group.dev.dependencies]
# Dev dependencies managed centrally in root pyproject.toml
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"