From 2461d59f0f2a76bdd3a82137d943a6338e537a8d Mon Sep 17 00:00:00 2001 From: JM Rohwer Date: Sat, 28 Aug 2021 15:29:12 +0200 Subject: [PATCH] add separate meta.macos.yaml for build --- packaging/conda/meta.macos.yaml | 58 +++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100755 packaging/conda/meta.macos.yaml diff --git a/packaging/conda/meta.macos.yaml b/packaging/conda/meta.macos.yaml new file mode 100755 index 0000000..fe66f71 --- /dev/null +++ b/packaging/conda/meta.macos.yaml @@ -0,0 +1,58 @@ +package: + name: pysces + version: "1.0.0" + +source: + # git_url: https://github.com/PySCeS/pysces.git + path: ../.. + +build: + number: 0 + include_recipe: True + script: "{{ PYTHON }} -m pip install --no-deps --ignore-installed . -vv" + +requirements: + build: + - python + - setuptools + - numpy + - scipy + - matplotlib + - nose + - fortran-compiler + host: + - python + - setuptools + - numpy + - scipy + - matplotlib + - nose + - libgfortran5 + run: + - python + - setuptools + - numpy + - scipy + - matplotlib + - nose + - libgfortran5 + - ipyparallel + - python-libsbml + - assimulo + +test: + imports: + - pysces + commands: + - python -s -c "import pysces; pysces.test(3)" + +about: + home: http://pysces.sourceforge.net + license: BSD + licence_file: LICENCE.txt + summary: Python Simulator for Cellular Systems + +extra: + maintainers: + - Brett G. Olivier + - Johann M. Rohwer