summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2013-12-30 19:52:09 +0300
committeranatoly techtonik <techtonik@gmail.com>2013-12-30 19:52:09 +0300
commit1f2afb3f66e812308cd5d30590448a7fdd84295a (patch)
tree6a23053157f0f89c6ac7389490d87d4d872e5763
parent117d03ab4ae7cc3d793289a56ab74a9aaf12419f (diff)
downloadtox-1f2afb3f66e812308cd5d30590448a7fdd84295a.tar.gz
allow to run tox as 'python -m tox', which is handy on Windoze
-rw-r--r--tox/__main__.py3
1 files changed, 3 insertions, 0 deletions
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()