diff options
Diffstat (limited to 'bin/manifest.py')
-rwxr-xr-x | bin/manifest.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/bin/manifest.py b/bin/manifest.py new file mode 100755 index 0000000..6b100f0 --- /dev/null +++ b/bin/manifest.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python3 +# +# Copyright (c) 2017 Weitian LI <liweitianux@live.com> +# MIT license +# +# Weitian LI +# 2017-02-11 + +""" +Manage the observation manifest in YAML format. + +NOTE +---- +Use `ruamel.yaml`_ instead of `PyYAML`_ to preserve the comments +and other structures in the YAML file. + +.. _`ruamel.yaml`: https://bitbucket.org/ruamel/yaml +.. _`PyYAML`: http://pyyaml.org/ +""" + +from _context import acispy +from acispy import manifest + + +if __name__ == "__main__": + manifest.main() |