diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-23 12:15:51 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-23 12:15:51 -0400 |
commit | 6260b1fb6b3d514ec1a47f787b214302e9e99cca (patch) | |
tree | 78f5e2066a247ca09fb15b24f9184a1770afbab1 | |
parent | 6967b767f7e9b81a5488cd192935b995c36f4c44 (diff) | |
download | cbc-recipes-6260b1fb6b3d514ec1a47f787b214302e9e99cca.tar.gz |
Initial commit
-rw-r--r-- | gwcs/gwcs.ini | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gwcs/gwcs.ini b/gwcs/gwcs.ini new file mode 100644 index 0000000..e6c4756 --- /dev/null +++ b/gwcs/gwcs.ini @@ -0,0 +1,41 @@ +[package] +name: gwcs +version: 0.5 + +[about] +home: https://github.com/spacetelescope/${package:name} +license: GPL +summary: ${package:name} + +[source] +git_url: https://github.com/spacetelescope/${package:name} +git_tag: v0.5 + +[build] +number: 0 + +[requirements] +build: + asdf + astropy >=1.1 + setuptools + numpy x.x + python x.x + +run: + asdf + astropy >=1.1 + numpy x.x + python x.x + +[test] +imports: + gwcs + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 |