diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-05-22 13:40:55 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-05-25 23:54:41 -0400 |
commit | 1127e773f87f7f290f3cc9cb648d786a67341da2 (patch) | |
tree | 879b8cfd7308ebba54fbe0e354d5cfe2d923cd32 | |
parent | ce5bd3bcfb79dc73b880aca900c1b0f2a43c4324 (diff) | |
download | astroconda-dev-1127e773f87f7f290f3cc9cb648d786a67341da2.tar.gz |
Port sphere from contrib
-rw-r--r-- | sphere/bld.bat | 1 | ||||
-rw-r--r-- | sphere/build.sh | 1 | ||||
-rw-r--r-- | sphere/meta.yaml | 32 |
3 files changed, 34 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..697ee80 --- /dev/null +++ b/sphere/meta.yaml @@ -0,0 +1,32 @@ +{% set name = 'sphere' %} +{% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0") + +".dev" + +environ.get("GIT_DESCRIBE_NUMBER", "0") %} +{% 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_url: https://github.com/spacetelescope/sphere +test: + imports: + - spherical_geometry |