Skip to content

Commit

Permalink
add conda build filles
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohnson541 committed Jul 8, 2024
1 parent a41106f commit 5d5710b
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .conda/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export JULIAUP_DEPOT_PATH=$CONDA_PREFIX/share/julia
juliaup update
python -c "from pyrms import rms"
38 changes: 38 additions & 0 deletions .conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#for conda build
package:
name: pyrms
version: {{ environ.get('GIT_DESCRIBE_TAG', '') }}

source:
path: ../

build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}

requirements:
host:
- pyjuliacall
- rmgmolecule
- rdkit >=2015.09.2
- setuptools
- juliaup
- numpy
run:
- pydot
- yaml
- pyjuliacall
- rmgmolecule >=0.3
- rdkit >=2015.09.2
- juliaup
- jupyter
- matplotlib
- nose
test:
imports:
- pyrms
commands:
- nosetests pyrms/rmsTest.py # [unix]
about:
home: http://github.com/ReactionMechanismGenerator/pyrms
license: MIT
summary: "A program for simulating and analyzing kinetic models of chemical reaction mechanisms."

0 comments on commit 5d5710b

Please sign in to comment.