Files
aitbc/packages/py/aitbc-sdk/pyproject.toml
oib ff5486fe08 ```
chore: refactor logging module, update genesis timestamp, remove model relationships, and reorganize routers

- Rename logging.py to logger.py and update import paths in poa.py and main.py
- Update devnet genesis timestamp to 1766828620
- Remove SQLModel Relationship declarations from Block, Transaction, and Receipt models
- Add SessionDep type alias and get_session dependency in coordinator-api deps
- Reorganize coordinator-api routers: replace explorer/registry with exchange, users, marketplace
2025-12-28 21:05:53 +01:00

15 lines
381 B
TOML

[project]
name = "aitbc-sdk"
version = "0.1.0"
description = "AITBC client SDK for interacting with coordinator services"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.7.0",
"aitbc-crypto @ file:///home/oib/windsurf/aitbc/packages/py/aitbc-crypto"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"