diff options
| author | P. L. Lim <lim@stsci.edu> | 2017-07-09 11:56:35 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-07-09 11:56:35 -0400 | 
| commit | e148227175498e65ef14bfbd5e8884d99a8f36a1 (patch) | |
| tree | 74b266b599efd097b6634c3f27d0a6a6e4949e7a /spherical-geometry | |
| parent | a7850a80e0f6f9f4ad39929ad57269071b8ad33e (diff) | |
| download | astroconda-contrib-e148227175498e65ef14bfbd5e8884d99a8f36a1.tar.gz | |
Rename sphere to spherical-geometry (#236)
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 | 36 | 
3 files changed, 38 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..fd8f9a0 --- /dev/null +++ b/spherical-geometry/meta.yaml @@ -0,0 +1,36 @@ +{% set name = 'spherical_geometry' %} +{% set version = '1.0.10' %} +{% set number = '0' %} + +about: +    home: https://github.com/spacetelescope/{{ name }} +    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/{{ name }}.git + +test: +    imports: +    - spherical_geometry | 
