18 lines
496 B
TOML
18 lines
496 B
TOML
[project]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.110.0",
|
|
"httpx>=0.28.1",
|
|
"python-multipart>=0.0.32",
|
|
"uvicorn[standard]>=0.29.0",
|
|
]
|
|
|
|
# uv 使用国内 PyPI 镜像(加速依赖安装;网络受限环境可切换其它镜像源)
|
|
[tool.uv]
|
|
index-url = "https://mirrors.aliyun.com/pypi/simple/"
|
|
extra-index-url = ["https://mirrors.cloud.tencent.com/pypi/simple/"]
|