From e4caf4a2acbb18875b1064246554e4105449b5a3 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Wed, 23 Mar 2016 17:00:53 -0400 Subject: Initial commit --- astrolib.coords/bld.bat | 5 +++++ astrolib.coords/build.sh | 4 ++++ astrolib.coords/meta.yaml | 25 +++++++++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 astrolib.coords/bld.bat create mode 100644 astrolib.coords/build.sh create mode 100644 astrolib.coords/meta.yaml (limited to 'astrolib.coords') diff --git a/astrolib.coords/bld.bat b/astrolib.coords/bld.bat new file mode 100644 index 0000000..fe97c61 --- /dev/null +++ b/astrolib.coords/bld.bat @@ -0,0 +1,5 @@ + + +pip install --no-deps --upgrade --force d2to1 || exit 1 +python setup.py install +if errorlevel 1 exit 1 \ No newline at end of file diff --git a/astrolib.coords/build.sh b/astrolib.coords/build.sh new file mode 100644 index 0000000..5d1e7ae --- /dev/null +++ b/astrolib.coords/build.sh @@ -0,0 +1,4 @@ + +pip install --no-deps --upgrade --force d2to1 || exit 1 +test -f README.md && ln -s README.md README.txt +python setup.py install || exit 1 \ No newline at end of file diff --git a/astrolib.coords/meta.yaml b/astrolib.coords/meta.yaml new file mode 100644 index 0000000..9c8a9d0 --- /dev/null +++ b/astrolib.coords/meta.yaml @@ -0,0 +1,25 @@ +about: + home: https://github.com/spacetelescope/astrolib.coords.git + license: BSD + summary: astrolib.coords +build: + number: '0' +package: + name: astrolib.coords + version: 0.39.6 +requirements: + build: + - d2to1 + - stsci.distutils + - setuptools + - numpy x.x + - python x.x + run: + - numpy x.x + - python x.x +source: + git_tag: 0.39.6 + git_url: https://github.com/spacetelescope/astrolib.coords.git/ +test: + imports: + - astrolib.coords -- cgit