pilotwings/pyproject.toml
Michel Roux e741402471
All checks were successful
pilotwings / python (push) Successful in 2m26s
pilotwings / node (push) Successful in 1m27s
pilotwings / docker (push) Successful in 3m2s
chore: ⬆️ update deps
2024-11-09 12:52:58 +01: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.4"}
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"]