train_utility/pyproject.toml
2026-08-04 14:00:46 +04:00

36 lines
687 B
TOML
Executable file

[project]
name = "yolo-train-webui"
version = "0.1.0"
description = "Web UI for training Ultralytics YOLO models with MLflow tracking"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.110.0",
"mlflow>=3.0",
"ultralytics>=8.3",
"uvicorn>=0.28.0",
"websockets>=12.0",
]
[project.scripts]
yolo-train-webui = "yolo_webui.app:main"
[dependency-groups]
build = [
"hatchling==1.27.0",
]
dev = [
"pytest>=8.3",
"httpx",
]
[build-system]
requires = ["hatchling==1.27.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/yolo_webui"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]