diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-23 17:00:53 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-19 11:17:20 -0400 |
commit | f46565fe6f3eefd6a8eb1cec7179164f2800b042 (patch) | |
tree | b57ece5acd84c9a8c9235818b975a439c8ae3df9 /poppy | |
download | astroconda-dev-f46565fe6f3eefd6a8eb1cec7179164f2800b042.tar.gz |
Initial commit
Diffstat (limited to 'poppy')
-rw-r--r-- | poppy/bld.bat | 3 | ||||
-rw-r--r-- | poppy/build.sh | 2 | ||||
-rw-r--r-- | poppy/meta.yaml | 35 |
3 files changed, 40 insertions, 0 deletions
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 |