TTT / pyproject.toml
github-actions[bot]
Auto-deploy from GitHub: 50b84ac89dc80c1333e0b8b708ae805e4133437f
b9a1550
raw
history blame contribute delete
525 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ttt-runner-backend"
version = "2.0.0"
description = "FastAPI backend for TTT Runner"
dependencies = [
"fastapi",
"uvicorn",
"aiosqlite",
"aiofiles",
"python-multipart",
"custom_logger @ git+https://github.com/jebin2/custom_logger.git",
"ttt-runner @ git+https://github.com/jebin2/TTT.git"
]
[project.scripts]
ttt-backend = "app.main:app"
[tool.setuptools.packages.find]
include = ["app*"]