pilotwings/pyproject.toml

32 lines
632 B
TOML
Raw Normal View History

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