From 633dde17b85e7ccd27e86f67d603ba432e2f6735 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 11 Dec 2015 00:30:53 -0500 Subject: Recommit astropy recipes to deprecated directory --- deprecated/astropy-helpers/astropy-helpers.ini | 36 ++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 deprecated/astropy-helpers/astropy-helpers.ini (limited to 'deprecated/astropy-helpers') diff --git a/deprecated/astropy-helpers/astropy-helpers.ini b/deprecated/astropy-helpers/astropy-helpers.ini new file mode 100644 index 0000000..31e01b1 --- /dev/null +++ b/deprecated/astropy-helpers/astropy-helpers.ini @@ -0,0 +1,36 @@ +[package] +name: astropy-helpers +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/astropy/${package:name} +license: BSD +summary: ${package:name} +readme: README.rst + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + python + setuptools + numpy +run: + python + numpy + + +[cbc_build] +linux: + python setup.py install || exit 1 + + +windows: + python setup.py install + if errorlevel 1 exit 1 -- cgit