From 34d08b052ed8a8565a3e8b3266a04eea2dd81b96 Mon Sep 17 00:00:00 2001 From: Amirhossein <66441226+nilchia@users.noreply.github.com> Date: Tue, 29 Oct 2024 13:38:56 +0100 Subject: [PATCH] add Corneto (#51745) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * meta.yaml created by greyskull * update meta.yaml * Update recipes/corneto/meta.yaml Co-authored-by: Björn Grüning * SPDX identifier --------- Co-authored-by: Björn Grüning --- recipes/corneto/meta.yaml | 46 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 recipes/corneto/meta.yaml diff --git a/recipes/corneto/meta.yaml b/recipes/corneto/meta.yaml new file mode 100644 index 0000000000000..fe7defc856845 --- /dev/null +++ b/recipes/corneto/meta.yaml @@ -0,0 +1,46 @@ +{% set name = "corneto" %} +{% set version = "1.0.0a0" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/corneto-{{ version }}.tar.gz + sha256: 966d50762f92047ea4e5d1a136607f20ae9ec1d585530a24ad5c95e700b24180 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + run_exports: + - {{ pin_subpackage("corneto", max_pin="x.x.x") }} + +requirements: + host: + - python >=3.9 + - poetry-core >=1.0.0 + - pip + run: + - python >=3.9 + - numpy >=1.15,<2.0.0 + - cvxpy-base >=1.5.0,<2.0.0 + - scipy >=1.11.0,<2.0.0 + +test: + imports: + - corneto + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/saezlab/corneto/ + summary: 'CORNETO: A Unified Framework for Omics-Driven Network Inference' + license: GPL-3.0-or-later + license_file: LICENSE + +extra: + recipe-maintainers: + - nilchia