From 322661dde153e9e57c810c20b401f9d006d512a6 Mon Sep 17 00:00:00 2001 From: tpansin Date: Thu, 23 Jul 2020 08:44:06 -0700 Subject: Added support to run with python -m --- dotbot/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 dotbot/__main__.py diff --git a/dotbot/__main__.py b/dotbot/__main__.py new file mode 100644 index 0000000..9ae637f --- /dev/null +++ b/dotbot/__main__.py @@ -0,0 +1,4 @@ +from .cli import main + +if __name__ == "__main__": + main() -- cgit v1.2.3