bowler/__main__.py (5 lines of code) (raw):
#!/usr/bin/env python3
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import sys
from .main import main
if __name__ == "__main__":
sys.argv[0] = "bowler"
main()