Files
aitbc/packages/py/aitbc-core/pyproject.toml
aitbc db22fc9871 Pin Python version to 3.13.5 and ignore coordinator-api poetry.lock
- 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
2026-05-07 09:15:36 +02:00

29 lines
573 B
TOML

[project]
name = "aitbc-core"
version = "0.1.0"
description = "AITBC Core Utilities"
authors = [
{name = "AITBC Team", email = "team@aitbc.dev"}
]
readme = "README.md"
requires-python = ">=3.13.5,<3.14"
dependencies = [
"cryptography>=46.0.0",
"sqlmodel>=0.0.14",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"redis>=5.0.0",
"pydantic>=2.5.0",
"structlog>=23.0.0",
"starlette>=0.27.0",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [
{ include = "aitbc", from = "src" }
]