pilotwings/pyproject.toml
Renovate Bot e4aacc21f5
All checks were successful
pilotwings / python (push) Successful in 1m36s
pilotwings / node (push) Successful in 33s
pilotwings / docker (push) Successful in 1m38s
chore(deps): update dependency ruff to ^0.8.3
2024-12-13 06:47:56 +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.6"}
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
ruff = "^0.8.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"]