diff --git a/src/gitsweep/__main__.py b/src/gitsweep/__main__.py new file mode 100644 index 0000000..bcd6d81 --- /dev/null +++ b/src/gitsweep/__main__.py @@ -0,0 +1,5 @@ +import sys + +from gitsweep.cli import CommandLine + +CommandLine(sys.argv).run()