summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2018-02-14 22:29:23 -0500
committerGitHub <noreply@github.com>2018-02-14 22:29:23 -0500
commit5f7c10cdf25e21a2e1e35b22f78aa40a3c73c21c (patch)
tree6c601c1db04c927aebb51b2f04a4554a28dd27d6
parent3b964041b0a02e159bde41043de346c301f3966f (diff)
downloadastroconda-contrib-5f7c10cdf25e21a2e1e35b22f78aa40a3c73c21c.tar.gz
Initial commit of radio-beam (#310)
-rw-r--r--radio-beam/bld.bat2
-rw-r--r--radio-beam/build.sh1
-rw-r--r--radio-beam/meta.yaml40
3 files changed, 43 insertions, 0 deletions
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