From ab762b49fdc03be701d1e20a38394bec946ab82a Mon Sep 17 00:00:00 2001 From: Ed Brannin Date: Wed, 29 Mar 2017 17:02:49 -0400 Subject: [PATCH] Run peru with `python -m peru` (python -m peru.main still works too) This helps recover from "My Python 2&3 got mixed up on Windows!" in the least surprising way. I'm already used to `py -3 -m pip ...` but I never thought to check for some longer module-name to run for peru. I'm not aware of any downside to having this file. Please feel free to prove me wrong. :) Fix #176 --- peru/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 peru/__main__.py diff --git a/peru/__main__.py b/peru/__main__.py new file mode 100644 index 0000000..c43000f --- /dev/null +++ b/peru/__main__.py @@ -0,0 +1,3 @@ +from .main import main +main() +