diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-05-19 17:06:17 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-05-19 17:06:17 -0400 |
commit | a6d56e5659cd3a0eae14fcbaa98fca3413548deb (patch) | |
tree | 27e3019f49a9ce02407253aa9e4329544ed1a770 | |
parent | 2b9286b24bfb26e8df05a5b255a180639cefa87a (diff) | |
parent | 3f0e68404b5c039a774b8e703211efd650cfb39e (diff) | |
download | astroconda-contrib-a6d56e5659cd3a0eae14fcbaa98fca3413548deb.tar.gz |
Merge pull request #5 from jhunkeler/contrib-sphere
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 |