From 5f7c10cdf25e21a2e1e35b22f78aa40a3c73c21c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 14 Feb 2018 22:29:23 -0500 Subject: Initial commit of radio-beam (#310) --- radio-beam/bld.bat | 2 ++ radio-beam/build.sh | 1 + radio-beam/meta.yaml | 40 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 radio-beam/bld.bat create mode 100644 radio-beam/build.sh create mode 100644 radio-beam/meta.yaml diff --git a/radio-beam/bld.bat b/radio-beam/bld.bat new file mode 100644 index 0000000..760380e --- /dev/null +++ b/radio-beam/bld.bat @@ -0,0 +1,2 @@ + +%PYTHON% setup.py install diff --git a/radio-beam/build.sh b/radio-beam/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/radio-beam/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/radio-beam/meta.yaml b/radio-beam/meta.yaml new file mode 100644 index 0000000..4150794 --- /dev/null +++ b/radio-beam/meta.yaml @@ -0,0 +1,40 @@ +{% set name = 'radio-beam' %} +{% set reponame = 'radio_beam' %} +{% set tag = 'v0.2' %} +{% set version = tag %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} +{% set number = '0' %} + +about: + home: https://github.com/radio-astro-tools/{{ reponame }} + license: BSD + summary: This package provides tools for working with beams in radio data. + +build: + number: {{ number }} + +package: + name: {{ name }} + version: {{ version }} + +requirements: + build: + - astropy + - numpy {{ numpy }} + - python {{ python }} + - setuptools + + run: + - astropy + - numpy + - python + +source: + git_tag: {{ tag }} + git_url: https://github.com/radio-astro-tools/{{ reponame }}.git + +test: + imports: + - radio_beam -- cgit