- 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
21 lines
626 B
TOML
21 lines
626 B
TOML
[tool.poetry]
|
|
name = "aitbc-wallet-daemon"
|
|
version = "v0.2.3"
|
|
description = "AITBC Wallet Daemon Service"
|
|
authors = ["AITBC Team <team@aitbc.dev>"]
|
|
readme = "README.md"
|
|
packages = [{include = "app", from = "src"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
aitbc-core = {path = "../../packages/py/aitbc-core"}
|
|
# All other dependencies managed centrally in root pyproject.toml
|
|
# This file only defines package structure for the wallet daemon
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
# Dev dependencies managed centrally in root pyproject.toml
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|