diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-03-02 08:37:40 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-03-02 08:37:40 -0500 |
commit | 9432e8f386a688414b076f5b7b2f0527a566b165 (patch) | |
tree | 62e8a9b8cd38972b792bae51a70fceaae4fcf81e /asdf/asdf.ini | |
parent | 89fbd642090f7396e08f13d5bb229be6b3c4acb9 (diff) | |
download | cbc-recipes-9432e8f386a688414b076f5b7b2f0527a566b165.tar.gz |
Renamed pyasdf to asdf
Diffstat (limited to 'asdf/asdf.ini')
-rw-r--r-- | asdf/asdf.ini | 48 |
1 files changed, 48 insertions, 0 deletions
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 |