35 lines
661 B
TOML
35 lines
661 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 = [
|
|
"aiosqlite>=0.20.0",
|
|
"bcrypt>=4.0.0",
|
|
"fastapi>=0.115.0",
|
|
"httpx[socks]>=0.28.0",
|
|
"openai>=1.55.0",
|
|
"python-dotenv>=1.0.0",
|
|
"uvicorn[standard]>=0.32.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|