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

from _context import acispy
from acispy import results


logging.basicConfig(level=logging.INFO)


if __name__ == "__main__":
    results.main()