diff options
Diffstat (limited to 'sphinx-apidoc.py')
-rwxr-xr-x | sphinx-apidoc.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sphinx-apidoc.py b/sphinx-apidoc.py new file mode 100755 index 000000000..9cafb497d --- /dev/null +++ b/sphinx-apidoc.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" + Sphinx - Python documentation toolchain + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import sys + +if __name__ == '__main__': + from sphinx.apidoc import main + sys.exit(main(sys.argv)) |