27 lines
517 B
TOML
27 lines
517 B
TOML
|
[tool.poetry]
|
||
|
name = "backend"
|
||
|
version = "0.1.0"
|
||
|
description = ""
|
||
|
authors = ["Xéfir Destiny <xefir@crystalyx.net>"]
|
||
|
readme = "README.md"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = ">=3.8"
|
||
|
fastapi = {extras = ["standard"], version = "^0.115.4"}
|
||
|
python-dotenv = "^1.0.1"
|
||
|
sqlmodel = "^0.0.22"
|
||
|
|
||
|
[tool.poetry.group.dev.dependencies]
|
||
|
mypy = "^1.13.0"
|
||
|
ruff = "^0.7.2"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|
||
|
|
||
|
[tool.mypy]
|
||
|
strict = true
|
||
|
|
||
|
[tool.ruff.lint]
|
||
|
select = ["E", "F", "I", "UP"]
|