diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-26 12:37:09 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-26 12:37:09 -0400 |
commit | c2c49d7c60f99d8da9d105cddb94a90ccb662663 (patch) | |
tree | 276385ad582f9aa34b27f118a99f94cfbda69822 /specviz | |
parent | 20220424b6db845221c1e78acbe8b5928d088b7f (diff) | |
download | astroconda-dev-c2c49d7c60f99d8da9d105cddb94a90ccb662663.tar.gz |
Align contrib packages with dev
Diffstat (limited to 'specviz')
-rw-r--r-- | specviz/bld.bat | 1 | ||||
-rw-r--r-- | specviz/build.sh | 1 | ||||
-rw-r--r-- | specviz/meta.yaml | 49 |
3 files changed, 51 insertions, 0 deletions
diff --git a/specviz/bld.bat b/specviz/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/specviz/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/specviz/build.sh b/specviz/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/specviz/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/specviz/meta.yaml b/specviz/meta.yaml new file mode 100644 index 0000000..ccb7fed --- /dev/null +++ b/specviz/meta.yaml @@ -0,0 +1,49 @@ +{% set name = 'specviz' %} +{% set version = '0.2.1rc5' %} +{% set tag = 'v0.2.1rc5' %} +{% set number = '0' %} + +package: + name: {{ name }} + version: {{ version }} + +source: + git_tag: {{ tag }} + git_url: https://github.com/spacetelescope/specviz.git + +requirements: + build: + - astropy + - cython + - specutils + - pyyaml + - pyqtgraph >=0.9.11 + - pyqt + - scipy + - yaml + - setuptools + - numpy x.x + - python x.x + + run: + - astropy + - cython + - specutils + - pyyaml + - pyqtgraph >=0.9.11 + - pyqt + - scipy + - yaml + - numpy x.x + - python x.x + +test: + requires: + - astropy + - specutils + imports: + - specviz + +about: + home: https://github.com/spacetelescope/specviz + license: BSD |