summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pyscipopt/package.py
blob: 60a46a2e262afdec68e268c0f4e8fad394689435 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 PyPyscipopt(PythonPackage):
    """Python interface for the SCIP Optimization Suite"""

    homepage = "https://github.com/scipopt/PySCIPOpt"
    pypi = "PySCIPOpt/PySCIPOpt-3.4.0.tar.gz"

    license("MIT")

    version("3.4.0", sha256="8da4db57b21010e0d5a863292dd455c88dd71ecec12a8439171c213a8092f88a")

    depends_on("py-setuptools", type="build")
    depends_on("py-cython", type="build")
    depends_on("py-wheel", type="build")
    depends_on("scipoptsuite")