Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__main__.py « sphinx - github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d750a0c2ca1adb009ff4fb81360638d6f340dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
    The Sphinx documentation toolchain.

    :copyright: Copyright 2007-2022 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:]))