doc.py 293 B

12345678910
  1. import sys
  2. from epydoc.cli import cli
  3. # add default parameters to the command line
  4. options = ['--html', '-o', 'doc', '--inheritance', 'listed']
  5. sys.argv.extend(options)
  6. # extend the command line to include the given files
  7. files = ['__init__.py', 'HookManager.py']
  8. sys.argv.extend(files)
  9. cli()