Files
sphinx/sphinx/__main__.py
2015-01-03 21:41:14 +01:00

15 lines
288 B
Python

# -*- coding: utf-8 -*-
"""
sphinx.__main__
~~~~~~~~~~~~~~~
The Sphinx documentation toolchain.
:copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import sys
from sphinx import main
sys.exit(main(sys.argv))