43 lines
885 B
TOML
43 lines
885 B
TOML
[project]
|
||
name = "fastapi-template"
|
||
version = "0.1.0"
|
||
description = "FastAPI 模板(MongoDB + Beanie 单后端分支)"
|
||
requires-python = ">=3.11"
|
||
dependencies = [
|
||
"fastapi>=0.115",
|
||
"uvicorn[standard]>=0.30",
|
||
"pydantic>=2.7",
|
||
"pydantic-settings>=2.4",
|
||
"beanie>=2.0",
|
||
"pymongo>=4.9",
|
||
]
|
||
|
||
[dependency-groups]
|
||
dev = [
|
||
"pytest>=8.0",
|
||
"pytest-asyncio>=0.23",
|
||
"httpx>=0.27",
|
||
"ruff>=0.6",
|
||
]
|
||
|
||
[tool.ruff]
|
||
line-length = 100
|
||
target-version = "py311"
|
||
|
||
[tool.ruff.lint]
|
||
select = ["E", "F", "I", "UP", "B", "ASYNC", "RUF"]
|
||
ignore = [
|
||
"RUF001", "RUF002", "RUF003", # 中文文档字符串里的全角标点是有意的
|
||
]
|
||
|
||
[tool.ruff.lint.per-file-ignores]
|
||
"tests/conftest.py" = ["E402"] # 需要先设环境变量再 import app
|
||
|
||
[tool.pytest.ini_options]
|
||
asyncio_mode = "auto"
|
||
testpaths = ["tests"]
|
||
pythonpath = ["."]
|
||
|
||
[tool.uv]
|
||
package = false
|