mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
16 lines
280 B
Python
16 lines
280 B
Python
"""
|
|
sphinx.__main__
|
|
~~~~~~~~~~~~~~~
|
|
|
|
The Sphinx documentation toolchain.
|
|
|
|
:copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
import sys
|
|
|
|
from sphinx.cmd.build import main
|
|
|
|
sys.exit(main(sys.argv[1:]))
|