#!/usr/bin/env python # # Call the command line interface for Epydoc, # monkeypatching to get simpler HTML output for mechanize. # # We have to do some path magic to prevent Python from getting # confused about the difference between this epydoc module, and the # real epydoc package. So sys.path[0], which contains the directory # of the script. import sys, os.path script_path = os.path.abspath(sys.path[0]) sys.path = [p for p in sys.path if os.path.abspath(p) != script_path] import epydocext epydocext.monkeypatch_epydoc() from epydoc.cli import cli cli()