24 lines
368 B
TOML
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"]
|