Home | History | Annotate | Download | only in command

Lines Matching defs:install

4 (install all Python modules)."""
23 description = "install all Python modules (extensions and pure Python)"
41 ('install-dir=', 'd', "directory to install to"),
42 ('build-dir=','b', "build directory (where to install from)"),
56 # let the 'install' command dictate our installation directory
65 # Get all the information we need to install pure Python modules
66 # from the umbrella 'install' command -- build (source) directory,
67 # install (target) directory, and whether to compile .py files.
68 self.set_undefined_options('install',
94 # Install everything: simply dump the entire contents of the build
97 outfiles = self.install()
113 def install(self):
117 self.warn("'%s' does not exist -- no Python modules to install" %
129 # Get the "--root" directory supplied to the "install" command,
133 install_root = self.get_finalized_command('install').root