54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ai-orchestrator"
|
|
version = "0.1.0"
|
|
description = "Server-side AI orchestrator/runtime for tasks, models, MCP tools, and local workers."
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
license = { text = "Proprietary" }
|
|
authors = [
|
|
{ name = "Mikhail" }
|
|
]
|
|
dependencies = [
|
|
"fastapi>=0.115.0,<1.0.0",
|
|
"pydantic>=2.9.0,<3.0.0",
|
|
"pydantic-settings>=2.5.0,<3.0.0",
|
|
"pyyaml>=6.0.2,<7.0.0",
|
|
"sse-starlette>=2.1.3,<3.0.0",
|
|
"uvicorn>=0.32.0,<1.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.0,<9.0.0",
|
|
"pytest-asyncio>=0.24.0,<1.0.0",
|
|
"httpx>=0.27.0,<1.0.0",
|
|
"ruff>=0.6.0,<1.0.0",
|
|
]
|
|
db = [
|
|
"sqlalchemy>=2.0.36,<3.0.0",
|
|
"alembic>=1.13.0,<2.0.0",
|
|
"asyncpg>=0.30.0,<1.0.0",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
package-dir = { "" = "src" }
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py313"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "UP", "B", "SIM"]
|