diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-02-02 11:07:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-02 11:07:16 -0500 |
commit | 92285d599fff039d903ab21acfdb125c84d56549 (patch) | |
tree | a03b9f53cd293a7d7de9c528748c100fe9fc133a | |
parent | 444e424eaca6c9ed7d036e636d27aca0b0b03ce2 (diff) | |
download | astroconda-contrib-92285d599fff039d903ab21acfdb125c84d56549.tar.gz |
Initial commit of jwst_gtvt (#158)
-rw-r--r-- | jwst_gtvt/bld.bat | 1 | ||||
-rw-r--r-- | jwst_gtvt/build.sh | 1 | ||||
-rw-r--r-- | jwst_gtvt/meta.yaml | 35 |
3 files changed, 37 insertions, 0 deletions
diff --git a/jwst_gtvt/bld.bat b/jwst_gtvt/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/jwst_gtvt/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/jwst_gtvt/build.sh b/jwst_gtvt/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/jwst_gtvt/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/jwst_gtvt/meta.yaml b/jwst_gtvt/meta.yaml new file mode 100644 index 0000000..5a2cfe3 --- /dev/null +++ b/jwst_gtvt/meta.yaml @@ -0,0 +1,35 @@ +{% set name = 'jwst_gtvt' %} +{% set version = '0.0.1' %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/{{ name }} + license: BSD + summary: | + Calculates the allowed position angle for a given Right Ascension and + Declination for each instrument. + +build: + number: {{ number }} + +package: + name: {{ name }} + version: {{ version }} + +requirements: + build: + - astropy + - matplotlib + - numpy + - setuptools + - python x.x + + run: + - astropy + - matplotlib + - numpy + - python x.x + +source: + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/{{ name }}.git |