aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/results.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/results.py')
-rwxr-xr-xscripts/results.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/results.py b/scripts/results.py
new file mode 100755
index 0000000..7536e2f
--- /dev/null
+++ b/scripts/results.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python3
+#
+# Copyright (c) 2017 Weitian LI <liweitianux@live.com>
+# MIT license
+#
+# Weitian LI
+# 2017-02-11
+
+"""
+Manage the analysis results in YAML format.
+"""
+
+import manifest
+
+
+def main(description="Manage the analysis results (YAML format)",
+ default_file="results.yaml"):
+ manifest.main(description=description, default_file=default_file)
+
+
+if __name__ == "__main__":
+ main()