From 333c7bc0212c59913b7a4f147e7c56d716738d10 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Thu, 17 Dec 2015 19:11:13 -0500 Subject: Initial commit --- stginga/stginga.ini | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 stginga/stginga.ini (limited to 'stginga') diff --git a/stginga/stginga.ini b/stginga/stginga.ini new file mode 100644 index 0000000..dee8344 --- /dev/null +++ b/stginga/stginga.ini @@ -0,0 +1,43 @@ +[package] +name: stginga +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} + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + ginga + astropy + setuptools + python + +run: + ginga + astropy + python + +[test] +commands: + stginga --help + +imports: + stginga + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 -- cgit