diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-02-22 08:53:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-22 08:53:06 -0500 |
commit | d4ccb57a335dfda4b3583107767a081691352b2f (patch) | |
tree | 43dd1892560bcc467c5eaf1373390cefe4707acd /spectral-cube | |
parent | ebe4788bd2ee01f8b991f02d1665db3d87cc383d (diff) | |
parent | e027b0e371ddedc4377b43b425d2f67282ff45b7 (diff) | |
download | astroconda-contrib-d4ccb57a335dfda4b3583107767a081691352b2f.tar.gz |
Merge branch 'master' into patch-3
Diffstat (limited to 'spectral-cube')
-rw-r--r-- | spectral-cube/bld.bat | 2 | ||||
-rw-r--r-- | spectral-cube/build.sh | 2 | ||||
-rw-r--r-- | spectral-cube/meta.yaml | 42 |
3 files changed, 46 insertions, 0 deletions
diff --git a/spectral-cube/bld.bat b/spectral-cube/bld.bat new file mode 100644 index 0000000..760380e --- /dev/null +++ b/spectral-cube/bld.bat @@ -0,0 +1,2 @@ + +%PYTHON% setup.py install diff --git a/spectral-cube/build.sh b/spectral-cube/build.sh new file mode 100644 index 0000000..6bd6081 --- /dev/null +++ b/spectral-cube/build.sh @@ -0,0 +1,2 @@ + +$PYTHON setup.py install diff --git a/spectral-cube/meta.yaml b/spectral-cube/meta.yaml new file mode 100644 index 0000000..8ed054d --- /dev/null +++ b/spectral-cube/meta.yaml @@ -0,0 +1,42 @@ +{% set name = 'spectral-cube' %} +{% set version = 'v0.4.1' %} +{% set tag = version %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} +{% set number = '0' %} + +about: + home: https://github.com/radio-astro-tools/{{ name }} + license: BSD + summary: Library for reading and analyzing astrophysical spectral data cubes + +build: + number: {{ number }} + +package: + name: {{ name }} + version: {{ version }} + +requirements: + build: + - astropy + - numpy {{ numpy }} + - radio-beam + - setuptools + - python {{ python }} + + run: + - astropy + - numpy + - radio-beam + - setuptools + - python + +source: + git_tag: {{ tag }} + git_url: https://github.com/radio-astro-tools/{{ name }}.git + +test: + imports: + - spectral_cube |