34 lines
643 B
TOML
34 lines
643 B
TOML
[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.11"
|
|
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]
|
|
dev = [
|
|
"pytest>=8.3",
|
|
"httpx",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/yolo_webui"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q"
|
|
testpaths = ["tests"]
|
|
|