diff options
author | Todd Miller <jmiller@stsci.edu> | 2018-06-22 09:10:14 -0400 |
---|---|---|
committer | Todd Miller <jmiller@stsci.edu> | 2018-06-22 09:10:14 -0400 |
commit | ff7bb35c63ef298df2207dbfdc49e441cec0e2ae (patch) | |
tree | 7cb17a5919c32a5aae5f627a77a0db239d6d19af /pysiaf | |
parent | e3ccb95b25b6a978e8e2da7783cc53ec6b2d698a (diff) | |
parent | f6dbc50fd6569c11c4b0286f4d30a08a56b8463e (diff) | |
download | astroconda-contrib-ff7bb35c63ef298df2207dbfdc49e441cec0e2ae.tar.gz |
Merge branch 'master' of https://github.com/astroconda/astroconda-contrib into update-crds-version to resolve version conflicts.
Diffstat (limited to 'pysiaf')
-rw-r--r-- | pysiaf/bld.bat | 2 | ||||
-rw-r--r-- | pysiaf/build.sh | 2 | ||||
-rw-r--r-- | pysiaf/meta.yaml | 45 |
3 files changed, 49 insertions, 0 deletions
diff --git a/pysiaf/bld.bat b/pysiaf/bld.bat new file mode 100644 index 0000000..760380e --- /dev/null +++ b/pysiaf/bld.bat @@ -0,0 +1,2 @@ + +%PYTHON% setup.py install diff --git a/pysiaf/build.sh b/pysiaf/build.sh new file mode 100644 index 0000000..56f0b30 --- /dev/null +++ b/pysiaf/build.sh @@ -0,0 +1,2 @@ + +$PYTHON setup.py install
\ No newline at end of file diff --git a/pysiaf/meta.yaml b/pysiaf/meta.yaml new file mode 100644 index 0000000..588d833 --- /dev/null +++ b/pysiaf/meta.yaml @@ -0,0 +1,45 @@ +{% set name = 'pysiaf' %} +{% set version = '0.1.8' %} +{% set tag = version %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/{{ name }} + license: BSD + summary: + Handling of Science Instrument Aperture Files (SIAF) for space telescopes + +source: + git_tag: {{ tag }} + git_url: https://github.com/spacetelescope/{{ name }}.git + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +requirements: + build: + - astropy >=1.2 + - numpy >=1.9 + - matplotlib >=1.4.3 + - lxml >=3.6.4 + - scipy >=0.17 + - openpyxl >=2.4 + - python {{ python }} + - setuptools + + run: + - astropy >=1.2 + - numpy >=1.9 + - matplotlib >=1.4.3 + - lxml >=3.6.4 + - scipy >=0.17 + - openpyxl >=2.4 + - python {{ python }} + +test: + imports: + - pysiaf |