diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-02-16 08:30:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-16 08:30:23 -0500 |
commit | 2ffe495f05a6b5b362fd185cce8fcca7604f7add (patch) | |
tree | f7b95d2e14bdd7c2e43d0d91b6780e3922899276 /jwst_gtvt | |
parent | 86028b898c396b9671c745fed96ba287c99dbb4b (diff) | |
download | astroconda-dev-2ffe495f05a6b5b362fd185cce8fcca7604f7add.tar.gz |
Initial commit of jwst_gtvt (#20)
Diffstat (limited to 'jwst_gtvt')
-rw-r--r-- | jwst_gtvt/bld.bat | 1 | ||||
-rw-r--r-- | jwst_gtvt/build.sh | 1 | ||||
-rw-r--r-- | jwst_gtvt/meta.yaml | 36 |
3 files changed, 38 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..2005477 --- /dev/null +++ b/jwst_gtvt/meta.yaml @@ -0,0 +1,36 @@ +{% set name = 'jwst_gtvt' %} +{% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0") + +".dev" + +environ.get("GIT_DESCRIBE_NUMBER", "0") %} +{% 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_url: https://github.com/spacetelescope/{{ name }}.git |