sphinx/sphinx-autogen.py

16 lines
378 B
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Sphinx - Python documentation toolchain
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-03-01 01:18:16 -06:00
:copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
2011-01-04 03:00:51 -06:00
:license: BSD, see LICENSE for details.
"""
import sys
if __name__ == '__main__':
from sphinx.ext.autosummary.generate import main
sys.exit(main(sys.argv))