- Add complete Python backend (Litestar + LangGraph) with chat, conversations, tickets APIs - Add GitHub Actions workflow for auto-deploying backend to Azure Web App (soc-backend) - Add gunicorn to requirements.txt for production serving - Update CLAUDE.md and EXTERNAL_SERVICES.md with latest config - Remove obsolete claudehd.md (merged into gpthd.md) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
601 B
TOML
24 lines
601 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.backends._legacy:_Backend"
|
|
|
|
[project]
|
|
name = "soc-backend"
|
|
version = "0.1.0"
|
|
description = "SOC Chat Backend - LangGraph + Litestar"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"litestar[standard]>=2.15.0",
|
|
"uvicorn[standard]>=0.34.0",
|
|
"langchain>=0.3.0",
|
|
"langchain-openai>=0.3.0",
|
|
"langgraph>=0.3.0",
|
|
"langgraph-checkpoint>=2.0.0",
|
|
"pydantic-settings>=2.7.0",
|
|
"python-dotenv>=1.0.0",
|
|
"httpx>=0.28.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["ruff", "pytest", "pytest-asyncio"]
|