File: sphinx-autogen.py

package info (click to toggle)
sphinx 1.4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 12,692 kB
  • ctags: 8,480
  • sloc: python: 44,908; perl: 344; makefile: 330; sh: 80; xml: 10; ansic: 1
file content (15 lines) | stat: -rwxr-xr-x 378 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
    Sphinx - Python documentation toolchain
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
    :license: BSD, see LICENSE for details.
"""

import sys

if __name__ == '__main__':
    from sphinx.ext.autosummary.generate import main
    sys.exit(main(sys.argv))