sphinx/sphinx/__main__.py
2018-02-17 10:01:57 +09:00

17 lines
320 B
Python

# -*- coding: utf-8 -*-
"""
sphinx.__main__
~~~~~~~~~~~~~~~
The Sphinx documentation toolchain.
:copyright: Copyright 2007-2018 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:])) # type: ignore