#! /usr/bin/env python

import sys

import pygists.cli


def main():
    return pygists.cli.main()


if __name__ == '__main__':
    sys.exit(main())
