File: sphinx-autogen.py

package info (click to toggle)
sphinx 1.6.5-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 14,992 kB
  • sloc: python: 50,537; perl: 387; makefile: 296; sh: 80; xml: 16; ansic: 1
file content (15 lines) | stat: -rwxr-xr-x 378 bytes parent folder | download | duplicates (5)
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-2017 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))