mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Make 'python -m sphinx' possible
This commit is contained in:
parent
fc94bee009
commit
74c7a52eca
14
sphinx/__main__.py
Normal file
14
sphinx/__main__.py
Normal file
@ -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))
|
Loading…
Reference in New Issue
Block a user