- 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
27 lines
612 B
TOML
27 lines
612 B
TOML
[tool.poetry]
|
|
name = "monitoring-service"
|
|
version = "0.1.0"
|
|
description = "AITBC Monitoring Service for system health and metrics"
|
|
authors = ["AITBC Team"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
fastapi = ">=0.115.6"
|
|
uvicorn = {extras = ["standard"], version = "^0.32.0"}
|
|
sqlmodel = "^0.0.37"
|
|
sqlalchemy = "^2.0.25"
|
|
pydantic = "^2.6.0"
|
|
pydantic-settings = "^2.1.0"
|
|
httpx = ">=0.28.1"
|
|
psutil = "^7.2.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = ">=9.0.3"
|
|
pytest-asyncio = ">=1.3.0"
|
|
black = ">=26.3.1"
|
|
ruff = "^0.1.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|