File size: 422 Bytes
a2e5072
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4af9980
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[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"