From c6bbd04876c6473424f28403f7c590f6ad44c419 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Wed, 17 Feb 2016 21:23:07 -0500 Subject: Add aliveness tests; Increase dependency tracking --- deprecated/imutils/imutils.ini | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 deprecated/imutils/imutils.ini (limited to 'deprecated') diff --git a/deprecated/imutils/imutils.ini b/deprecated/imutils/imutils.ini new file mode 100644 index 0000000..cd10124 --- /dev/null +++ b/deprecated/imutils/imutils.ini @@ -0,0 +1,38 @@ +[package] +name: imutils +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} +#git_tag: + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + nose + astropy >=1.1 + setuptools + python + +run: + nose + astropy >=1.1 + setuptools + python + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 -- cgit