From ef7231769356e6345f03c74db586ccc9208ff02e Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Sat, 21 May 2016 09:33:34 -0700 Subject: [PATCH] Allow python -m xonsh It seams more pythonistic than `python -m xonsh.main` --- xonsh/__main__.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 xonsh/__main__.py diff --git a/xonsh/__main__.py b/xonsh/__main__.py new file mode 100644 index 000000000..d45ff5c6c --- /dev/null +++ b/xonsh/__main__.py @@ -0,0 +1,2 @@ +from xonsh.main import main +main()