31 lines
576 B
TOML
31 lines
576 B
TOML
[project]
|
|
name = "yolo-train-tui"
|
|
version = "0.1.0"
|
|
description = "Terminal UI for training Ultralytics YOLO models with MLflow tracking"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mlflow>=3.0",
|
|
"textual>=1.0",
|
|
"ultralytics>=8.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
yolo-train-tui = "yolo_tui.app:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/yolo_tui"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q"
|
|
testpaths = ["tests"]
|
|
|