Files
wiseclaw/backend/pyproject.toml

24 lines
569 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wiseclaw-backend"
version = "0.1.0"
description = "FastAPI backend for WiseClaw"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.116.0,<1.0.0",
"uvicorn[standard]>=0.35.0,<1.0.0",
"pydantic-settings>=2.10.0,<3.0.0",
"sqlalchemy>=2.0.39,<3.0.0",
"httpx>=0.28.0,<1.0.0",
"python-telegram-bot>=22.0,<23.0",
"browser-use>=0.12.2,<1.0.0",
"anthropic>=0.76.0,<1.0.0",
]
[tool.setuptools.packages.find]
where = ["."]