sphinx/sphinx-web.py
2008-01-11 14:18:19 +00:00

15 lines
300 B
Python

# -*- coding: utf-8 -*-
"""
Sphinx - Python documentation webserver
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007-2008 by Armin Ronacher, Georg Brandl.
:license: BSD.
"""
import sys
if __name__ == '__main__':
from sphinx.web import main
sys.exit(main(sys.argv))