From e4caf4a2acbb18875b1064246554e4105449b5a3 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Wed, 23 Mar 2016 17:00:53 -0400 Subject: Initial commit --- stsci.sphere/bld.bat | 7 +++++++ stsci.sphere/build.sh | 4 ++++ stsci.sphere/meta.yaml | 29 +++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 stsci.sphere/bld.bat create mode 100644 stsci.sphere/build.sh create mode 100644 stsci.sphere/meta.yaml (limited to 'stsci.sphere') diff --git a/stsci.sphere/bld.bat b/stsci.sphere/bld.bat new file mode 100644 index 0000000..2096589 --- /dev/null +++ b/stsci.sphere/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 +if errorlevel 1 exit 1 \ No newline at end of file diff --git a/stsci.sphere/build.sh b/stsci.sphere/build.sh new file mode 100644 index 0000000..5e8b365 --- /dev/null +++ b/stsci.sphere/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/stsci.sphere/meta.yaml b/stsci.sphere/meta.yaml new file mode 100644 index 0000000..33ba98a --- /dev/null +++ b/stsci.sphere/meta.yaml @@ -0,0 +1,29 @@ +about: + home: http://www.stsci.edu/institute/software_hardware + license: GPL + summary: stsci.sphere +build: + number: '0' + preserve_egg_dir: 'yes' +package: + name: stsci.sphere + version: '0.2' +requirements: + build: + - d2to1 + - astropy >=1.1 + - matplotlib + - numpy x.x + - setuptools + - stsci.distutils + - python x.x + run: + - astropy >=1.1 + - matplotlib + - numpy x.x + - python x.x +source: + git_url: ssh://git@bitbucket.org/stsci_ssb/stsci.sphere +test: + imports: + - stsci.sphere -- cgit