diff --git a/thermopyl/build.sh b/thermopyl/build.sh new file mode 100755 index 00000000..8e25a145 --- /dev/null +++ b/thermopyl/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +$PYTHON setup.py install diff --git a/thermopyl/meta.yaml b/thermopyl/meta.yaml new file mode 100644 index 00000000..7607f81e --- /dev/null +++ b/thermopyl/meta.yaml @@ -0,0 +1,42 @@ +package: + name: thermopyl + version: 1.0.1 + +source: + git_url: https://github.com/choderalab/thermopyl.git + git_tag: 1.0.1 + +build: + preserve_egg_dir: True + number: 0 + skip: True # [win] + +requirements: + build: + - python + - six + - pandas + - pyxb ==1.2.4 + - feedparser + - pytables + + run: + - python + - six + - pandas + - pyxb ==1.2.4 + - feedparser + - pytables + +test: + requires: + - nose + imports: + - thermopyl + commands: + - nosetests thermopyl --nocapture --verbosity=2 --with-doctest + - thermoml-build-pandas --help + +about: + home: https://github.com/choderalab/thermopyl + license: GNU Lesser General Public License v2 or later (LGPLv2+)