summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pyaestro/package.py
blob: eb993b4334f7d8a542d3ef718edb17b4466dd451 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2013-2024 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 PyPyaestro(PythonPackage):
    """A collection of data classes, data structures, and other utility classes
    that are aimed for use in workflow"""

    homepage = "https://github.com/FrankD412/pyaestro"
    pypi = "pyaestro/pyaestro-0.0.1a2.tar.gz"
    git = "https://github.com/FrankD412/pyaestro"

    maintainers("FrankD412")

    license("MIT")

    # git branches
    version("main", branch="main")
    version("0.0.1a2", sha256="1f6a5068ff8dd9fe4838aba43850e51a5b622f379819ae62103617bf9c8aaa31")

    depends_on("python@3.5:", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-coloredlogs", type=("build", "run"))
    depends_on("py-psutil", type=("build", "run"))