From b46f46f5c49609017d1e0d97985d0cfb0bbaadf7 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 23 Mar 2018 21:17:42 -0400 Subject: Initial commits of ccdproc, reproject, astropy-healpix, astroscrappy (#121) --- astroscrappy/bld.bat | 1 + astroscrappy/build.sh | 1 + astroscrappy/meta.yaml | 39 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 astroscrappy/bld.bat create mode 100644 astroscrappy/build.sh create mode 100644 astroscrappy/meta.yaml (limited to 'astroscrappy') diff --git a/astroscrappy/bld.bat b/astroscrappy/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/astroscrappy/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/astroscrappy/build.sh b/astroscrappy/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/astroscrappy/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/astroscrappy/meta.yaml b/astroscrappy/meta.yaml new file mode 100644 index 0000000..04aca06 --- /dev/null +++ b/astroscrappy/meta.yaml @@ -0,0 +1,39 @@ +{% set name = "astroscrappy" %} +{% set version = GIT_DESCRIBE_TAG ~ ".dev" ~ GIT_DESCRIBE_NUMBER ~ "+" ~ GIT_DESCRIBE_HASH %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} +{% set number = '0' %} + +about: + home: https://github.com/astropy/astroscrappy + license: BSD + summary: Speedy Cosmic Ray Annihilation Package in Python + +build: + number: {{ number }} + +package: + name: {{ name }} + version: {{ version }} + +requirements: + build: + - astropy + - cython + - setuptools + - numpy {{ numpy }} + - python {{ python }} + + run: + - astropy + - numpy + - python + +source: + git_url: https://github.com/astropy/{{ name }}.git + +test: + imports: + - astroscrappy + -- cgit