summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sphinx/__main__.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/sphinx/__main__.py b/sphinx/__main__.py
new file mode 100644
index 000000000..ee8419b79
--- /dev/null
+++ b/sphinx/__main__.py
@@ -0,0 +1,14 @@
+# -*- coding: utf-8 -*-
+"""
+ Sphinx
+ ~~~~~~
+
+ The Sphinx documentation toolchain.
+
+ :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
+"""
+import sys
+from sphinx import main
+
+sys.exit(main(sys.argv))