diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-11-07 10:35:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 10:35:43 -0500 |
commit | 509e9f4d9b7282d90f9ac8b6b515c36a52fc118f (patch) | |
tree | 9a72ce20ca33b31bfddc0a14ac8317a6b7c62cb7 /spherical-geometry | |
parent | 05b6ceb506b9222ef3fcf1acdf5f7dbc693c6e22 (diff) | |
parent | ae9265d4e2407579822310cc3cf68a150ea3bed7 (diff) | |
download | astroconda-contrib-509e9f4d9b7282d90f9ac8b6b515c36a52fc118f.tar.gz |
Merge branch 'master' into imexam0.8.0
Diffstat (limited to 'spherical-geometry')
-rw-r--r-- | spherical-geometry/bld.bat | 1 | ||||
-rw-r--r-- | spherical-geometry/build.sh | 1 | ||||
-rw-r--r-- | spherical-geometry/meta.yaml | 37 |
3 files changed, 39 insertions, 0 deletions
diff --git a/spherical-geometry/bld.bat b/spherical-geometry/bld.bat new file mode 100644 index 0000000..762d43b --- /dev/null +++ b/spherical-geometry/bld.bat @@ -0,0 +1 @@ +python setup.py install diff --git a/spherical-geometry/build.sh b/spherical-geometry/build.sh new file mode 100644 index 0000000..762d43b --- /dev/null +++ b/spherical-geometry/build.sh @@ -0,0 +1 @@ +python setup.py install diff --git a/spherical-geometry/meta.yaml b/spherical-geometry/meta.yaml new file mode 100644 index 0000000..121f881 --- /dev/null +++ b/spherical-geometry/meta.yaml @@ -0,0 +1,37 @@ +{% set name = 'spherical-geometry' %} +{% set reponame = 'spherical_geometry' %} +{% set version = '1.0.12' %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/{{ reponame }} + 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 + - python x.x + run: + - astropy >=1.1 + - matplotlib + - numpy + - python x.x + +source: + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/{{ reponame }}.git + +test: + imports: + - spherical_geometry |