From 1f2afb3f66e812308cd5d30590448a7fdd84295a Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Mon, 30 Dec 2013 19:52:09 +0300 Subject: allow to run tox as 'python -m tox', which is handy on Windoze --- tox/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tox/__main__.py diff --git a/tox/__main__.py b/tox/__main__.py new file mode 100644 index 0000000..d60aab2 --- /dev/null +++ b/tox/__main__.py @@ -0,0 +1,3 @@ +from tox._cmdline import main + +main() -- cgit v1.2.1