aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/results.py
blob: 7536e2f135eed4355e0ba200170c08108d851cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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()