22 lines
402 B
TOML
22 lines
402 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",
|
|
"uvicorn[standard]>=0.32.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|