"""Allow ``python -m govtool`` as an alternative to the installed entry point.""" import sys from govtool.cli import main if __name__ == "__main__": sys.exit(main())