summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpansin <tpansin@purdue.edu>2020-07-23 08:44:06 -0700
committertpansin <tpansin@purdue.edu>2020-07-23 08:44:06 -0700
commit322661dde153e9e57c810c20b401f9d006d512a6 (patch)
tree06b73bc8128cbcc0773d2096f30c4fa7d60ed584
parentc5e709d433bdd6694ad68b67978b655a57f740df (diff)
Added support to run with python -m
-rw-r--r--dotbot/__main__.py4
1 files changed, 4 insertions, 0 deletions
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()