From b59332db2ea573d26caeb7a0ff194a1a8cfb3c6f Mon Sep 17 00:00:00 2001 From: Brad Chapman Date: Mon, 6 Jan 2020 10:24:09 -0500 Subject: [PATCH] [ci skip] Merge PR 19546 Merge PR #19546, commits were: * Update meta.yaml * Update meta.yaml * Update meta.yaml * New: cameo v0.11.15 -- metabolic engineering strain design --- recipes/cameo/meta.yaml | 77 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 recipes/cameo/meta.yaml diff --git a/recipes/cameo/meta.yaml b/recipes/cameo/meta.yaml new file mode 100644 index 00000000000000..6ce4b617830535 --- /dev/null +++ b/recipes/cameo/meta.yaml @@ -0,0 +1,77 @@ +{% set name = "cameo" %} +{% set version = "0.11.15" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" + sha256: faadecb5b01aa3342d9b9cbb2cfad2ed2a40ed2938452fa299122a99a3398bd3 + +build: + noarch: python + number: 0 + entry_points: + - cameo=cli:main + script: "{{ PYTHON }} -m pip install . -vv --no-deps --ignore-installed" + +requirements: + host: + - pip + - python >=3.6 + run: + - blessings >=1.5.1 + - click >=6.7 + - cobra >=0.11.1 + - escher >=1.1.2 + - future >=0.15.2 + - gnomic >=1.0.1 + - inspyred >=1.0 + - iprogress >=0.4 + - lazy-object-proxy >=1.2.0 + - networkx >=1.9.1 + - numexpr >=2.4 + - numpy >=1.9.1 + - openpyxl >=2.4.5 + - optlang >=1.2.1 + - ordered-set >=1.2 + - palettable >=2.1.1 + - pandas >=0.24.0 + - python >=3.6 + - requests >=2.10.0 + - scipy >=0.14.0 + - six >=1.9.0 + +test: + imports: + - cameo + - cameo.api + - cameo.core + - cameo.data + - cameo.flux_analysis + - cameo.models + - cameo.network_analysis + - cameo.strain_design + - cameo.strain_design.deterministic + - cameo.strain_design.heuristic + - cameo.strain_design.heuristic.evolutionary + - cameo.strain_design.heuristic.evolutionary.multiprocess + - cameo.strain_design.pathway_prediction + - cameo.ui + - cameo.visualization + - cameo.visualization.plotting + - cli + commands: + - cameo --help + +about: + home: "http://cameo.bio" + license: Apache Software + license_file: LICENSE + license_family: APACHE + summary: "cameo - computer aided metabolic engineering & optimization" + +extra: + recipe-maintainers: + - chapmanb