From 1d28d9af782425caad8eeff08794573a72d3f5f2 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 18 Jul 2016 15:33:27 -0400 Subject: Initial commit of specutils (#40) * Initial commit of specutils * Bump tag to 0.2.1 --- specutils/bld.bat | 1 + specutils/build.sh | 1 + specutils/meta.yaml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 specutils/bld.bat create mode 100644 specutils/build.sh create mode 100644 specutils/meta.yaml (limited to 'specutils') diff --git a/specutils/bld.bat b/specutils/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/specutils/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/specutils/build.sh b/specutils/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/specutils/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/specutils/meta.yaml b/specutils/meta.yaml new file mode 100644 index 0000000..f5ab336 --- /dev/null +++ b/specutils/meta.yaml @@ -0,0 +1,44 @@ +{% set name = 'specutils' %} +{% set version = '0.2.1' %} +{% set tag = 'v' + version %} +{% set number = '0' %} + +about: + home: https://github.com/astropy/specutils + license: BSD + summary: One-dimensional spectral operations + +package: + name: {{ name }} + version: {{ version }} + +build: + # Define this value above + number: {{ number }} + +source: + git_tag: {{ tag }} + git_url: https://github.com/astropy/{{ name }}.git + +requirements: + build: + - astropy + - cython + - scipy + - setuptools + - numpy x.x + - python x.x + run: + - astropy + - scipy + - numpy x.x + - python x.x + +test: + imports: + - specutils + - specutils.io + - specutils.models + - specutils.utils + - specutils.wcs + -- cgit