File size: 402 Bytes
0b85fad |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
[project]
name = "docker-space-fastapi-react"
version = "0.1.0"
description = "Backend for Docker Space FastAPI React"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Lucain Pouget", email = "[email protected]" },
]
dependencies = [
"fastapi",
"uvicorn",
"sqlmodel",
]
[dependency-groups]
dev = [
"ruff",
"ty",
]
[tool.ruff]
target-version = "py312"
|