Some checks failed
CLI Tests / test-cli (push) Failing after 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m40s
Documentation Validation / validate-docs (push) Failing after 12s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Integration Tests / test-service-integration (push) Successful in 2m42s
Package Tests / Python package - aitbc-agent-sdk (push) Failing after 34s
Package Tests / Python package - aitbc-core (push) Successful in 27s
Package Tests / Python package - aitbc-crypto (push) Successful in 13s
Package Tests / Python package - aitbc-sdk (push) Successful in 16s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 8s
Package Tests / JavaScript package - aitbc-token (push) Successful in 18s
Python Tests / test-python (push) Failing after 50s
Security Scanning / security-scan (push) Failing after 43s
Multi-Node Stress Testing / stress-test (push) Successful in 12s
Cross-Node Transaction Testing / transaction-test (push) Successful in 9s
- Created aitbc/_version.py with centralized version definition - Updated aitbc/__init__.py to import __version__ from _version module - Updated constants.py to use __version__ for PACKAGE_VERSION - Replaced print() calls with logger in decorators.py, events.py, queue_manager.py, and state.py - Added logger initialization using get_logger(__name__) in config.py, decorators.py, events.py, queue_manager.py, and state.py - Added cli/commands
26 lines
599 B
TOML
26 lines
599 B
TOML
[tool.poetry]
|
|
name = "hermes-service"
|
|
version = "0.1.0"
|
|
description = "AITBC hermes Service for agent orchestration and edge computing"
|
|
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"
|
|
|
|
[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"
|