[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "agent-runtime-server"
version = "1.0.0"
description = "Agent Runtime Manager Server"
requires-python = ">=3.11.4"
dependencies = [
    "fastapi==0.115.11",
    "uvicorn==0.42.0",
    "python-dotenv>=1.0.0",
    "python-multipart>=0.0.6",
    "openjiuwen-runtime-foundation==0.1.0",
    "openjiuwen-runtime-management==0.1.0"
]

[tool.uv]
default-groups = ['dev']

[dependency-groups]
dev = [
    "ruff==0.9.10",
]

[[tool.uv.index]]
url = "https://mirrors.aliyun.com/pypi/simple/"

[tool.setuptools.packages.find]
where = ["."]
exclude = ["*.egg-info", "tests"]
include = ["openjiuwen_runtime*"]