From 97b6cbfd6a1078e5717c01529099cffac1995f61 Mon Sep 17 00:00:00 2001 From: Max Linke Date: Sat, 7 May 2016 20:13:14 +0200 Subject: [PATCH] Add conda build script --- meta.yaml | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 meta.yaml diff --git a/meta.yaml b/meta.yaml new file mode 100644 index 0000000..d9e0e75 --- /dev/null +++ b/meta.yaml @@ -0,0 +1,53 @@ +package: + name: mdsynthesis + version: "0.6.0" + +source: + path: . + +build: + noarch_python: True + script: $PYTHON setup.py install + +requirements: + build: + - python + - setuptools + - datreant.core + - datreant.data + - mdanalysis + + + run: + - python + - datreant.core + - datreant.data + - mdanalysis + +test: + # Python imports + imports: + - mdsynthesis + + requires: + # Put any additional test requirements here. For example + - pytest + - datreant.core + - datreant.data + - mdanalysis + + files: + - src/mdsynthesis/tests + + commands: + - py.test src + +about: + home: http://mdsynthesis.readthedocs.io/en/master/ + license: GPLVv2 + license_file: LICENSE.txt + summary: 'a persistence engine for molecular dynamics data' + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml