From e4caf4a2acbb18875b1064246554e4105449b5a3 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Wed, 23 Mar 2016 17:00:53 -0400 Subject: Initial commit --- poppy/bld.bat | 3 +++ poppy/build.sh | 2 ++ poppy/meta.yaml | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 poppy/bld.bat create mode 100644 poppy/build.sh create mode 100644 poppy/meta.yaml (limited to 'poppy') diff --git a/poppy/bld.bat b/poppy/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/poppy/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1 \ No newline at end of file diff --git a/poppy/build.sh b/poppy/build.sh new file mode 100644 index 0000000..4b71885 --- /dev/null +++ b/poppy/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1 \ No newline at end of file diff --git a/poppy/meta.yaml b/poppy/meta.yaml new file mode 100644 index 0000000..65a5384 --- /dev/null +++ b/poppy/meta.yaml @@ -0,0 +1,35 @@ +about: + home: https://github.com/mperrin/poppy + license: BSD + summary: poppy +build: + number: '0' +package: + name: poppy + version: 0.4.0 +requirements: + build: + - nose + - astropy >=1.1 + - numpy x.x + - scipy + - matplotlib + - six [py27] + - mock [py27] + - enum34 [py27] + - setuptools + - python x.x + run: + - nose + - astropy >=1.1 + - numpy x.x + - scipy + - matplotlib + - six [py27] + - mock [py27] + - enum34 [py27] + - setuptools + - python x.x +source: + git_tag: v0.4.0 + git_url: https://github.com/mperrin/poppy -- cgit