From 9432e8f386a688414b076f5b7b2f0527a566b165 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 2 Mar 2016 08:37:40 -0500 Subject: Renamed pyasdf to asdf --- asdf/asdf.ini | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 asdf/asdf.ini (limited to 'asdf') diff --git a/asdf/asdf.ini b/asdf/asdf.ini new file mode 100644 index 0000000..b01dfeb --- /dev/null +++ b/asdf/asdf.ini @@ -0,0 +1,48 @@ +[package] +name: asdf +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/spacetelescope/pyasdf +license: BSD +summary: ${package:name} + +[source] +git_url: ${about:home} + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + astropy >=1.1 + pyyaml + jsonschema + pytest + six + setuptools + python + +run: + astropy >=1.1 + pyyaml + jsonschema + pytest + six + setuptools + python + +[test] +commands: + asdftool --help + +imports: + asdf + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 -- cgit