Files
InternalAuditInterprise/backend/pyproject.toml
T
2026-06-16 00:38:57 +08:00

25 lines
548 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[project]
name = "aiaudit-backend"
version = "0.1.0"
description = "AIAudit 本地 AI 内审平台后端"
requires-python = ">=3.11"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B"]
# B008FastAPI 依赖注入 Depends() 作为默认值是官方推荐用法
ignore = ["B008"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true