28 lines
633 B
TOML
28 lines
633 B
TOML
[project]
|
|
name = "duobibi-server"
|
|
version = "1.0.0"
|
|
description = "Mock + LLM backend for 多比比 (placeholder release)"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.32.0",
|
|
"pydantic>=2.9.0",
|
|
"zai-sdk>=0.0.4",
|
|
"python-multipart>=0.0.9",
|
|
# 极光一键登录:RSA 解密极光返回的加密手机号(PKCS#1 v1.5 padding)
|
|
"cryptography>=42.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"httpx>=0.27.0",
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.24.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["app*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|