sphinx/sphinx-web.py

15 lines
300 B
Python
Raw Normal View History

2007-07-23 04:02:25 -05:00
# -*- coding: utf-8 -*-
"""
Sphinx - Python documentation webserver
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007-2008 by Armin Ronacher, Georg Brandl.
:license: BSD.
2007-07-23 04:02:25 -05:00
"""
2007-08-09 04:19:37 -05:00
import sys
2007-07-23 04:02:25 -05:00
if __name__ == '__main__':
2007-08-09 04:19:37 -05:00
from sphinx.web import main
2007-07-23 04:02:25 -05:00
sys.exit(main(sys.argv))