- Add root pyproject.toml for poetry check in dev_heartbeat.py - Convert all packages from deprecated [tool.poetry.*] to [project.*] format - Update aitbc-core, aitbc-sdk, aitbc-crypto, aitbc-agent-sdk packages - Regenerate poetry.lock files for all packages - Fix poetry check failing issue in development environment This resolves the 'poetry check: FAIL' issue in dev_heartbeat.py while maintaining all package dependencies and build compatibility.
17 lines
327 B
TOML
17 lines
327 B
TOML
[project]
|
|
name = "aitbc-agent-sdk"
|
|
version = "0.1.0"
|
|
description = "AITBC Agent SDK"
|
|
authors = [
|
|
{name = "AITBC Team", email = "team@aitbc.dev"}
|
|
]
|
|
requires-python = "^3.13"
|
|
dependencies = [
|
|
"requests>=2.31.0",
|
|
"pydantic>=2.5.0"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|