Skip to content

Commit 74c7a52

Browse files
committed
Make 'python -m sphinx' possible
1 parent fc94bee commit 74c7a52

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

sphinx/__main__.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
Sphinx
4+
~~~~~~
5+
6+
The Sphinx documentation toolchain.
7+
8+
:copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
9+
:license: BSD, see LICENSE for details.
10+
"""
11+
import sys
12+
from sphinx import main
13+
14+
sys.exit(main(sys.argv))

0 commit comments

Comments
 (0)