class documentation

class install(orig.install): (source)

View In Hierarchy

Use easy_install to install the package, w/dependencies

Method do_egg_install Undocumented
Method finalize_options Undocumented
Method handle_extra_path Undocumented
Method initialize_options Undocumented
Method run Undocumented
Class Variable boolean_options Undocumented
Class Variable new_commands Undocumented
Class Variable user_options Undocumented
Instance Variable extra_dirs Undocumented
Instance Variable old_and_unmanageable Undocumented
Instance Variable path_file Undocumented
Instance Variable single_version_externally_managed Undocumented
Static Method _called_from_setup Attempt to detect whether run() was called from setup() or by another command. If called by setup(), the parent caller will be the 'run_command' method in 'distutils.dist', and *its* caller will be the 'run_commands' method...
Class Variable _nc Undocumented
def do_egg_install(self): (source)

Undocumented

def finalize_options(self): (source)

Undocumented

def handle_extra_path(self): (source)

Undocumented

def initialize_options(self): (source)

Undocumented

def run(self): (source)

Undocumented

boolean_options = (source)

Undocumented

new_commands = (source)

Undocumented

user_options = (source)

Undocumented

extra_dirs: str = (source)

Undocumented

old_and_unmanageable = (source)

Undocumented

path_file = (source)

Undocumented

single_version_externally_managed: bool = (source)

Undocumented

@staticmethod
def _called_from_setup(run_frame): (source)

Attempt to detect whether run() was called from setup() or by another command. If called by setup(), the parent caller will be the 'run_command' method in 'distutils.dist', and *its* caller will be the 'run_commands' method. If called any other way, the immediate caller *might* be 'run_command', but it won't have been called by 'run_commands'. Return True in that case or if a call stack is unavailable. Return False otherwise.

Undocumented