diff options
Diffstat (limited to 'stistools')
| -rw-r--r-- | stistools/bld.bat | 7 | ||||
| -rw-r--r-- | stistools/build.sh | 4 | ||||
| -rw-r--r-- | stistools/meta.yaml | 30 | 
3 files changed, 41 insertions, 0 deletions
| diff --git a/stistools/bld.bat b/stistools/bld.bat new file mode 100644 index 0000000..d1ddf28 --- /dev/null +++ b/stistools/bld.bat @@ -0,0 +1,7 @@ + +echo This d2to1 hack is deadly. +pip install --no-deps --upgrade --force d2to1 +if errorlevel 1 exit 1 + +python setup.py install || exit 1 +if errorlevel 1 exit 1
\ No newline at end of file diff --git a/stistools/build.sh b/stistools/build.sh new file mode 100644 index 0000000..5e8b365 --- /dev/null +++ b/stistools/build.sh @@ -0,0 +1,4 @@ + +echo This d2to1 hack is deadly. +pip install --no-deps --upgrade --force d2to1 || exit 1 +python setup.py install || exit 1
\ No newline at end of file diff --git a/stistools/meta.yaml b/stistools/meta.yaml new file mode 100644 index 0000000..424e8d6 --- /dev/null +++ b/stistools/meta.yaml @@ -0,0 +1,30 @@ +about: +    home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python +    license: BSD +    summary: stistools +build: +    number: '0' +package: +    name: stistools +    version: '1.1' +requirements: +    build: +    - d2to1 +    - astropy >=1.1 +    - scipy +    - stsci.distutils +    - stsci.tools +    - setuptools +    - numpy x.x +    - python x.x +    run: +    - astropy >=1.1 +    - scipy +    - stsci.tools +    - numpy x.x +    - python x.x +source: +    git_url: https://github.com/spacetelescope/stistools +test: +    imports: +    - stistools | 
