sphinx/sphinx-build.py
Georg Brandl b2ec05e690 More refactoring, this time allowing different file extensions
and a different master file. Also fix environment warning reporting
and improve handling of error conditions.
2008-02-01 20:44:17 +00:00

15 lines
280 B
Python

# -*- 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))