Files
aitbc/apps/wallet/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
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"