From 550aeaa2a9e4c911d52180f5ff6a112b12eb5aae Mon Sep 17 00:00:00 2001 From: Michael Goin Date: Wed, 19 Jul 2023 17:21:07 -0400 Subject: [PATCH] Add `yolov5` alias for `yolo` (#1111) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 16ae3d92a8..65803eab4a 100644 --- a/setup.py +++ b/setup.py @@ -271,6 +271,7 @@ def _setup_extras() -> Dict: "onnxruntime": _onnxruntime_deps, "image_classification": _image_classification_deps, "yolo": _yolo_integration_deps, + "yolov5": _yolo_integration_deps, "haystack": _haystack_integration_deps, "openpifpaf": _openpifpaf_integration_deps, "yolov8": _yolov8_integration_deps,