diff options
| author | P. L. Lim <lim@stsci.edu> | 2017-02-27 15:45:56 -0500 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-02-27 15:45:56 -0500 | 
| commit | 002b2b1579228cb86278ff8110c27d1ec1921aac (patch) | |
| tree | 073e3703f549fd6392666325125c69362366a97e /glue-ginga | |
| parent | 44fcda19c0865a0fc4beba963c9f231ba37258fe (diff) | |
| download | astroconda-contrib-002b2b1579228cb86278ff8110c27d1ec1921aac.tar.gz | |
Add glue-ginga package to the channel (#177)
* Add glue-ginga package to the channel
* Update build.sh
* Update bld.bat
Diffstat (limited to 'glue-ginga')
| -rw-r--r-- | glue-ginga/bld.bat | 2 | ||||
| -rw-r--r-- | glue-ginga/build.sh | 2 | ||||
| -rw-r--r-- | glue-ginga/meta.yaml | 39 | 
3 files changed, 43 insertions, 0 deletions
| diff --git a/glue-ginga/bld.bat b/glue-ginga/bld.bat new file mode 100644 index 0000000..85a7bc3 --- /dev/null +++ b/glue-ginga/bld.bat @@ -0,0 +1,2 @@ +%PYTHON% setup.py install +if errorlevel 1 exit 1 diff --git a/glue-ginga/build.sh b/glue-ginga/build.sh new file mode 100644 index 0000000..2038de1 --- /dev/null +++ b/glue-ginga/build.sh @@ -0,0 +1,2 @@ +echo > README.rst +$PYTHON setup.py install || exit 1 diff --git a/glue-ginga/meta.yaml b/glue-ginga/meta.yaml new file mode 100644 index 0000000..069917d --- /dev/null +++ b/glue-ginga/meta.yaml @@ -0,0 +1,39 @@ +{% set name = 'glue-ginga' %} +{% set version = '0.1.1' %} +{% set tag = 'v' + version %} +{% set number = '0' %} + +about: +    home: https://github.com/ejeschke/{{ name }} +    license: BSD +    summary: Astronomical data visualization + +build: +    number: {{ number }} + +package: +    name: {{ name }} +    version: {{ version }} + +requirements: +    build: +    - astropy >=1.2 +    - glueviz >=0.10 +    - ginga >=2.6.1 +    - setuptools +    - numpy +    - python x.x +    run: +    - astropy >=1.2 +    - glueviz >=0.10 +    - ginga >=2.6.1 +    - numpy +    - python x.x + +source: +    git_tag: {{ tag }} +    git_url: https://github.com/ejeschke/{{ name }}.git + +test: +    imports: +    - glue_ginga | 
