From 45c7d6e9c4145058f67613b0ad13d90643b57463 Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Sat, 3 Jan 2015 18:01:08 +0300 Subject: [PATCH] Allow to execute as `python -m gitsweep` --- src/gitsweep/__main__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/gitsweep/__main__.py 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()