#!/usr/bin/env python

import sys

from kcat import Kcat


def main():
    Kcat(sys.argv[1:]).run()


if __name__ == '__main__':
    main()
