From 5c48304d07063d66fc78db2af41c0f45f85cfae4 Mon Sep 17 00:00:00 2001 From: Sangu Mbekelu <60823467+Sangu-Mbekelu@users.noreply.github.com> Date: Tue, 14 Mar 2023 09:33:55 -0400 Subject: new py-ultralytics package (#35890) * new py-ultralytics package * [@spackbot] updating style on behalf of Sangu-Mbekelu * Update package.py modified dependencies --------- Co-authored-by: Sangu Mbekelu --- .../builtin/packages/py-ultralytics/package.py | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-ultralytics/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-ultralytics/package.py b/var/spack/repos/builtin/packages/py-ultralytics/package.py new file mode 100644 index 0000000000..3c97aa43cc --- /dev/null +++ b/var/spack/repos/builtin/packages/py-ultralytics/package.py @@ -0,0 +1,38 @@ +# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class PyUltralytics(PythonPackage): + """Ultralytics YOLOv8, developed by Ultralytics, is a cutting-edge, state-of-the-art + (SOTA) model that builds upon the success of previous YOLO versions and introduces new + features and improvements to further boost performance and flexibility. YOLOv8 is + designed to be fast, accurate, and easy to use, making it an excellent choice for a + wide range of object detection, image segmentation and image classification tasks.""" + + homepage = "https://github.com/ultralytics/ultralytics" + pypi = "ultralytics/ultralytics-8.0.50.tar.gz" + + version("8.0.50", sha256="fdcb22300b63b72aa52da1713c33c01741aca031a61f15327eb6f02615bb4b97") + + depends_on("py-setuptools", type=("build", "run")) + depends_on("py-matplotlib@3.2.2:", type=("build", "run")) + depends_on("py-numpy@1.18.5:", type=("build", "run")) + depends_on("opencv@4.6.0:+python3", type=("build", "run")) + depends_on("pil@7.1.2:", type=("build", "run")) + depends_on("py-pyyaml@5.3.1:", type=("build", "run")) + depends_on("py-requests@2.23.0:", type=("build", "run")) + depends_on("py-scipy@1.4.1:", type=("build", "run")) + depends_on("py-torch@1.7.0:", type=("build", "run")) + depends_on("py-torchvision@0.8.1:", type=("build", "run")) + depends_on("py-tqdm@4.64.0:", type=("build", "run")) + depends_on("py-tensorboard@2.4.1:", type=("build", "run")) + depends_on("py-pandas@1.1.4:", type=("build", "run")) + depends_on("py-seaborn@0.11.0:", type=("build", "run")) + depends_on("py-psutil", type=("build", "run")) + depends_on("py-thop@0.1.1:", type=("build", "run")) + depends_on("py-certifi@2022.12.7:", type=("build", "run")) + depends_on("py-sentry-sdk", type=("build", "run")) -- cgit v1.2.3-70-g09d2