diff options
author | Georg Brandl <georg@python.org> | 2009-03-14 21:08:52 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-03-14 21:08:52 +0100 |
commit | c85d4c2db2a31d451bbc1144de216689d1a3963f (patch) | |
tree | e3f66ea47b82e4b4f5195f3404c4336fe6dbbafa /sphinx-autogen.py | |
parent | ce4d9c3665637c3b9644077c2bb32cb97ecdd061 (diff) | |
download | sphinx-git-c85d4c2db2a31d451bbc1144de216689d1a3963f.tar.gz |
Work a bit on coding style of autosummary.
Diffstat (limited to 'sphinx-autogen.py')
-rwxr-xr-x | sphinx-autogen.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sphinx-autogen.py b/sphinx-autogen.py new file mode 100755 index 000000000..494f4d85a --- /dev/null +++ b/sphinx-autogen.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" + Sphinx - Python documentation toolchain + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + :copyright: 2007-2009 by Georg Brandl. + :license: BSD. +""" + +import sys + +if __name__ == '__main__': + from sphinx.ext.autosummary.generate import main + sys.exit(main(sys.argv)) |