diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-05-19 17:04:43 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-05-19 17:04:43 -0400 |
commit | 3f0e68404b5c039a774b8e703211efd650cfb39e (patch) | |
tree | 06d658a3db0ae22242c9e3255a357d52b1415771 | |
parent | cba385fc0b72de6d145a2ec7200afa5e05a9b7d5 (diff) | |
download | astroconda-contrib-3f0e68404b5c039a774b8e703211efd650cfb39e.tar.gz |
Initial commit of sphere
-rw-r--r-- | sphere/bld.bat | 1 | ||||
-rw-r--r-- | sphere/build.sh | 1 | ||||
-rw-r--r-- | sphere/meta.yaml | 31 |
3 files changed, 33 insertions, 0 deletions
diff --git a/sphere/bld.bat b/sphere/bld.bat new file mode 100644 index 0000000..762d43b --- /dev/null +++ b/sphere/bld.bat @@ -0,0 +1 @@ +python setup.py install diff --git a/sphere/build.sh b/sphere/build.sh new file mode 100644 index 0000000..762d43b --- /dev/null +++ b/sphere/build.sh @@ -0,0 +1 @@ +python setup.py install diff --git a/sphere/meta.yaml b/sphere/meta.yaml new file mode 100644 index 0000000..a19645b --- /dev/null +++ b/sphere/meta.yaml @@ -0,0 +1,31 @@ +{% set name = 'sphere' %} +{% set version = '1.0.6' %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/sphere + license: BSD + summary: For handling spherical polygons that represent arbitrary regions of the sky +build: + number: {{ number }} +package: + name: {{ name }} + version: {{ version }} +requirements: + build: + - astropy >=1.1 + - matplotlib + - setuptools + - numpy x.x + - python x.x + run: + - astropy >=1.1 + - matplotlib + - numpy x.x + - python x.x +source: + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/sphere +test: + imports: + - spherical_geometry |