python / pyproject.toml
YYou3
update with pyright
4af9980
raw
history blame contribute delete
422 Bytes
[project]
name = "python"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.121.0",
"uvicorn>=0.38.0",
]
[dependency-groups]
dev = [
"ruff>=0.14.3",
]
[tool.ruff.lint]
extend-select = ["B"]
[tool.pyright]
exclude = ["**/node_modules",
"**/__pycache__"
]
defineConstant = { DEBUG = true }
reportMissingImports = "error"