File size: 525 Bytes
1a252b6
 
 
 
 
22cac68
1a252b6
 
 
 
 
 
 
 
 
 
 
 
 
22cac68
b9a1550
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[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*"]