mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2026-09-03 20:52:55 -05:00
15 lines
288 B
Python
15 lines
288 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
sphinx.__main__
|
|
~~~~~~~~~~~~~~~
|
|
|
|
The Sphinx documentation toolchain.
|
|
|
|
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
import sys
|
|
from sphinx import main
|
|
|
|
sys.exit(main(sys.argv))
|