#!/usr/bin/env python
"""Cmd line entry point to git credit."""


from git_credit.base import main


if __name__ == "__main__":
    main()
