diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-02-17 21:23:07 -0500 |
---|---|---|
committer | Joe Hunkeler <jhunk@stsci.edu> | 2016-02-17 21:23:07 -0500 |
commit | c6bbd04876c6473424f28403f7c590f6ad44c419 (patch) | |
tree | ac4c869467c48c79b49da4449f107de850ea2a79 /deprecated/imutils/imutils.ini | |
parent | 36bc153302cfdb0ced51cf4247e25b42ce8e7403 (diff) | |
download | cbc-recipes-c6bbd04876c6473424f28403f7c590f6ad44c419.tar.gz |
Add aliveness tests; Increase dependency tracking
Diffstat (limited to 'deprecated/imutils/imutils.ini')
-rw-r--r-- | deprecated/imutils/imutils.ini | 38 |
1 files changed, 38 insertions, 0 deletions
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 |