diff options
-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 |