#!python
# -*- coding: utf-8 -*-

from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

__requires__ = ['antshell']
try:
    import pkg_resources
except Exception:
    pass

from antshell import main

if __name__ == "__main__":
    main()
