diff options
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 | 
