summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jwst-visit-parser/bld.bat2
-rw-r--r--jwst-visit-parser/build.sh2
-rw-r--r--jwst-visit-parser/meta.yaml40
3 files changed, 44 insertions, 0 deletions
diff --git a/jwst-visit-parser/bld.bat b/jwst-visit-parser/bld.bat
new file mode 100644
index 0000000..760380e
--- /dev/null
+++ b/jwst-visit-parser/bld.bat
@@ -0,0 +1,2 @@
+
+%PYTHON% setup.py install
diff --git a/jwst-visit-parser/build.sh b/jwst-visit-parser/build.sh
new file mode 100644
index 0000000..296d744
--- /dev/null
+++ b/jwst-visit-parser/build.sh
@@ -0,0 +1,2 @@
+
+$PYTHON setup.py install --single-version-externally-managed --record record.txt \ No newline at end of file
diff --git a/jwst-visit-parser/meta.yaml b/jwst-visit-parser/meta.yaml
new file mode 100644
index 0000000..656a427
--- /dev/null
+++ b/jwst-visit-parser/meta.yaml
@@ -0,0 +1,40 @@
+{% set name = 'jwst-visit-parser' %}
+{% set version = '0.1.2' %}
+{% set tag = version %}
+{% set number = '0' %}
+
+about:
+ home: https://github.com/spacetelescope/{{ name }}
+ license: BSD
+ summary:
+ Python tools for parsing JWST visit (.vst) files
+
+source:
+ git_tag: {{ tag }}
+ git_url: https://github.com/spacetelescope/{{ name }}.git
+
+package:
+ name: {{ name }}
+ version: {{ version }}
+
+build:
+ number: {{ number }}
+
+requirements:
+ build:
+ - setuptools
+ - numpy {{ numpy }}
+ - python {{ python }}
+ - pytest
+ - astropy
+
+ run:
+ - setuptools
+ - numpy {{ numpy }}
+ - python {{ python }}
+ - pytest
+ - astropy
+
+test:
+ imports:
+ - visitparser