diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-02-21 20:17:39 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-02-21 20:17:39 +0800 |
commit | f50d166f80adcfaaa30a62c1e0b25bfc9d76a2a4 (patch) | |
tree | 54634903ef011cdce197820a06289971fe7bb297 /scripts/manifest.py | |
parent | de1fe6cd2a98201cce609f456d0145f6b8c4a8fa (diff) | |
download | chandra-acis-analysis-f50d166f80adcfaaa30a62c1e0b25bfc9d76a2a4.tar.bz2 |
Move various Python tools from 'scripts/' to 'bin/'
Diffstat (limited to 'scripts/manifest.py')
-rwxr-xr-x | scripts/manifest.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/scripts/manifest.py b/scripts/manifest.py deleted file mode 100755 index 6b100f0..0000000 --- a/scripts/manifest.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/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() |