Files
tft/backend/pyproject.toml
2026-07-23 00:21:10 +02:00

24 lines
368 B
TOML

[project]
name = "tft"
version = "0.1.0"
description = "TFT round simulator for practice"
requires-python = ">=3.12"
dependencies = [
"fastapi",
"uvicorn",
"requests",
]
[dependency-groups]
dev = [
"pytest",
"httpx",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["tft"]