summaryrefslogtreecommitdiff
path: root/sphinx/__main__.py
blob: ee8419b797cf9d0c01025a7a1d50e4b1ef0a66c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-
"""
    Sphinx
    ~~~~~~

    The Sphinx documentation toolchain.

    :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
    :license: BSD, see LICENSE for details.
"""
import sys
from sphinx import main

sys.exit(main(sys.argv))