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

    :copyright: 2007-2008 by Georg Brandl.
    :license: BSD.
"""

import sys

if __name__ == '__main__':
    from sphinx import main
    sys.exit(main(sys.argv))