sphinx/sphinx-quickstart.py

16 lines
364 B
Python
Raw Normal View History

2008-06-23 07:38:21 -05:00
#!/usr/bin/env python
2008-02-09 17:09:36 -06:00
# -*- coding: utf-8 -*-
"""
Sphinx - Python documentation toolchain
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2010-01-01 07:09:13 -06:00
:copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
2009-01-03 05:15:04 -06:00
:license: BSD, see LICENSE for details.
2008-02-09 17:09:36 -06:00
"""
import sys
if __name__ == '__main__':
from sphinx.quickstart import main
sys.exit(main(sys.argv))