- Update requires-python in all pyproject.toml files from '>=3.13' to '>=3.13.5,<3.14' - aitbc-core, aitbc-sdk, aitbc-crypto, aitbc-agent-sdk - Add apps/coordinator-api/poetry.lock to .gitignore - Project officially supports Python 3.13.5 only
23 lines
433 B
TOML
23 lines
433 B
TOML
[project]
|
|
name = "aitbc-agent-sdk"
|
|
version = "0.1.0"
|
|
description = "AITBC Agent SDK"
|
|
authors = [
|
|
{name = "AITBC Team", email = "team@aitbc.dev"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13.5,<3.14"
|
|
dependencies = [
|
|
"requests>=2.31.0",
|
|
"pydantic>=2.5.0"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
packages = [
|
|
{ include = "aitbc_agent", from = "src" }
|
|
]
|