diff options
author | Sangu Mbekelu <60823467+Sangu-Mbekelu@users.noreply.github.com> | 2023-03-14 09:33:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 09:33:55 -0400 |
commit | 5c48304d07063d66fc78db2af41c0f45f85cfae4 (patch) | |
tree | d907bc1744e9166b171eaa4f4a6462f40df3df2a /var | |
parent | bab2f0a1b065b8f62b04ed87572d0fce4cbf8561 (diff) | |
download | spack-5c48304d07063d66fc78db2af41c0f45f85cfae4.tar.gz spack-5c48304d07063d66fc78db2af41c0f45f85cfae4.tar.bz2 spack-5c48304d07063d66fc78db2af41c0f45f85cfae4.tar.xz spack-5c48304d07063d66fc78db2af41c0f45f85cfae4.zip |
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 <s.mbekelu9@gmail.com>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-ultralytics/package.py | 38 |
1 files changed, 38 insertions, 0 deletions
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")) |