pilotwings/pyproject.toml
Renovate Bot 5d3c93b408
All checks were successful
pilotwings / python (push) Successful in 2m36s
pilotwings / node (push) Successful in 37s
pilotwings / docker (push) Successful in 2m30s
chore(deps): update dependency fastapi to ^0.115.5
2024-11-13 06:53:23 +00:00

32 lines
632 B
TOML

[tool.poetry]
name = "backend"
version = "0.0.0"
description = ""
authors = ["Xéfir Destiny <xefir@crystalyx.net>"]
readme = "README.md"
include = ["backend/dist/**"]
[tool.poetry.scripts]
pilotwings = 'backend.pilotwings:launch'
[tool.poetry.dependencies]
python = ">=3.8"
docker = "^7.1.0"
fastapi = {extras = ["standard"], version = "^0.115.5"}
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
ruff = "^0.7.3"
types-docker = "^7.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
strict = true
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]