forked from ReactionMechanismGenerator/PyDAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
41 lines (36 loc) · 983 Bytes
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# For conda build
package:
name: pydas
version: "0" # set by build.sh, which gets it from pydas/__init__.py
source:
path: .
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} # number of commits since last git tag (which should be last version bump)
requirements:
build:
- wget # [not linux32]
- gcc # [unix]
- gcc ==4.8.2 # [linux32]
- python 2.7* # for compatibility with RDKit
- setuptools
- cython ==0.21
- numpy
run:
- libgcc # [unix]
- python 2.7* # for compatibility with RDKit
- numpy
test:
requires:
- nose
- matplotlib
imports:
- pydas
- pydas.dassl
- pydas.daspk
commands:
- nosetests -P --all-modules -v -w $SRC_DIR/tests [unix]
- nosetests -P --all-modules -v -w %SRC_DIR%\tests [win]
about:
home: http://github.com/ReactionMechanismGenerator/PyDAS
license: MIT
summary: "A Python wrapper to several differential algebraic system solvers, namely DASSL and DASPK."