diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-01-12 22:36:37 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-01-12 22:36:37 -0500 |
commit | 7d1ee75af89b3e65c2ef1de8a0a32c92ab4b11b9 (patch) | |
tree | 7ea9efcb5b1cd0d0f4e72d1f790784417e638045 /pandokia | |
parent | 5b4a787144468680c6239ea5db1361d163933071 (diff) | |
download | cbc-recipes-7d1ee75af89b3e65c2ef1de8a0a32c92ab4b11b9.tar.gz |
Initial commit (mostly pandeia related)
Diffstat (limited to 'pandokia')
-rw-r--r-- | pandokia/:w | 46 | ||||
-rw-r--r-- | pandokia/pandokia.ini | 44 |
2 files changed, 90 insertions, 0 deletions
diff --git a/pandokia/:w b/pandokia/:w new file mode 100644 index 0000000..a0daac6 --- /dev/null +++ b/pandokia/:w @@ -0,0 +1,46 @@ +[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) }} +preserve_egg_dir : yes + +[requirements] +build : + setuptools + python + +run : + nose + py.test + unittest2 + python + +[test] +imports : + pdk + +commands : + pdk + + +[cbc_build] +linux : + python setup.py install || exit 1 + +windows : + python setup.py install + if errorlevel 1 exit 1 + 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 + |