diff options
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 |