summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2017-02-16 08:30:23 -0500
committerGitHub <noreply@github.com>2017-02-16 08:30:23 -0500
commit2ffe495f05a6b5b362fd185cce8fcca7604f7add (patch)
treef7b95d2e14bdd7c2e43d0d91b6780e3922899276
parent86028b898c396b9671c745fed96ba287c99dbb4b (diff)
downloadastroconda-dev-2ffe495f05a6b5b362fd185cce8fcca7604f7add.tar.gz
Initial commit of jwst_gtvt (#20)
-rw-r--r--jwst_gtvt/bld.bat1
-rw-r--r--jwst_gtvt/build.sh1
-rw-r--r--jwst_gtvt/meta.yaml36
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