Files
simple-chat-api/pyproject.toml
T
2026-07-03 19:33:16 +08:00

23 lines
430 B
TOML

[project]
name = "simple-chat-api"
version = "0.1.0"
description = "A minimal persistent DeepSeek chat API"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.115.0",
"httpx[socks]>=0.28.0",
"openai>=1.55.0",
"python-dotenv>=1.0.0",
"uvicorn[standard]>=0.32.0",
]
[dependency-groups]
dev = [
"pytest>=8.3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]