- Changed bare except clauses to specific exception types in web3_utils.py, testing.py, messages.py, and message_storage.py - Replaced print() calls with logger in testing.py, agent_discovery.py, compliance_agent.py, coordinator.py, trading_agent.py, keys.py, escrow.py, persistent_spending_tracker.py, sync_cli.py, and client.py - Added logger initialization using get_logger(__name__) in compliance_agent.py, coordinator.py, trading_agent.py, keys.py, escrow.py, persistent_spending_tracker.py, and client.py - Removed hardcoded secret
20 lines
573 B
TOML
20 lines
573 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"
|
|
# 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"
|