diff options
Diffstat (limited to 'pandokia/pandokia.ini')
-rw-r--r-- | pandokia/pandokia.ini | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/pandokia/pandokia.ini b/pandokia/pandokia.ini new file mode 100644 index 0000000..6d90e45 --- /dev/null +++ b/pandokia/pandokia.ini @@ -0,0 +1,44 @@ +[package] +name : pandokia +version : {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home : http://ssb.stsci.edu/testing/pandokia +license : BSD +summary : ${package:name} + +[source] +#fn : ${package:name}-${package:version}.tar.gz +#url : ${about:home}/${fn} +git_url : git@bitbucket.org:stsci_ssb/${package:name}.git +#git_tag : + +[build] +number : {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build : + setuptools + python + +run : + nose + pytest + python + +[test] +imports : + pandokia + +commands : + pdk --help + + +[cbc_build] +linux : + python setup.py install || exit 1 + +windows : + python setup.py install + if errorlevel 1 exit 1 + |