From 4b558fbfb64d932572019c7623afa6ef0de59b50 Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Sat, 21 Jan 2023 20:09:56 -0800 Subject: [PATCH] build files for pyrms --- pyrms/build.sh | 1 + pyrms/meta.yaml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 pyrms/build.sh create mode 100644 pyrms/meta.yaml diff --git a/pyrms/build.sh b/pyrms/build.sh new file mode 100644 index 0000000..a85c71b --- /dev/null +++ b/pyrms/build.sh @@ -0,0 +1 @@ +python -m pip install --no-deps --ignore-installed . \ No newline at end of file diff --git a/pyrms/meta.yaml b/pyrms/meta.yaml new file mode 100644 index 0000000..0a58220 --- /dev/null +++ b/pyrms/meta.yaml @@ -0,0 +1,46 @@ +{% set version = "0.1.2" %} +{% set name = "pyrms" %} + +package: + name: pyrms + version: {{ version }} + +source: + fn: {{ name }}-{{ version }}.tar.gz + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: d3a8929d5c66a80cc17469c3d82991182d566ad53c5b9d427d4f94ce2bcf73e5 + +build: + number: '1' + string: rmg_1 + +requirements: + build: + - python=3.7 + - pip + run: + - python=3.7 + - julia>=1.3 + - diffeqpy + - pyjulia + - rmg>=3.0.0 + - rdkit + - pydot + - matplotlib + - pyyaml + +test: + imports: + - pyrms + #commands: + # - python -c "from julia.api import Julia; jl = Julia(compiled_modules=False); from pyrms import rms" + # - python-jl -c "from pyrms import rms" + # - nosetests pyrms/pyrms/rmsTest.py + +about: + home: https://github.com/ReactionMechanismGenerator/pyrms + license: MIT + #license_file: 'LICENSE.md' + #license_family: MIT + summary: "python interface to ReactionMechanismSimulator" +