summaryrefslogtreecommitdiff
path: root/sphinx/__main__.py
blob: 5da409015fbc5d9275608cb33226205970516f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
    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:]))