diff options
-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 |