From 333c7bc0212c59913b7a4f147e7c56d716738d10 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Thu, 17 Dec 2015 19:11:13 -0500 Subject: Initial commit --- astroimtools/astroimtools.ini | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 astroimtools/astroimtools.ini (limited to 'astroimtools') diff --git a/astroimtools/astroimtools.ini b/astroimtools/astroimtools.ini new file mode 100644 index 0000000..3cb459e --- /dev/null +++ b/astroimtools/astroimtools.ini @@ -0,0 +1,35 @@ +[package] +name: astroimtools +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/spacetelescope/${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: + astropy + setuptools + python + +run: + astropy + python + +[cbc_build] +linux: + python setup.py install --offline || exit 1 + +windows: + python setup.py install --offline + if errorlevel 1 exit 1 -- cgit