|
|
initialize_options(self)
Set default values for all the options that this command supports. |
|
|
|
|
finalize_options(self)
Set final values for all the options that this command supports. |
|
|
|
|
run(self)
A command's raison d'etre: carry out the action it exists to perform,
controlled by the options initialized in 'initialize_options()',
customized by other commands, the setup script, the command-line, and
config files, and finalized in 'finalize_options()'. |
|
|
|
|
get_data_files(self)
Generate list of '(package,src_dir,build_dir,filenames)' tuples |
|
|
|
|
find_data_files(self,
package,
src_dir)
Return filenames for package's data files in 'src_dir' |
|
|
|
|
build_package_data(self)
Copy data files into build directory |
|
|
|
|
get_package_dir(self,
package)
Return the directory, relative to the top of the source distribution,
where package 'package' should be found (at least according to the
'package_dir' option, if any). |
|
|
|
|
| check_package(self,
package,
package_dir) |
|
|
|
|
| check_module(self,
module,
module_file) |
|
|
|
|
| find_package_modules(self,
package,
package_dir) |
|
|
|
|
find_modules(self)
Finds individually-specified Python modules, ie. |
|
|
|
|
find_all_modules(self)
Compute the list of all modules that will be built, whether they are
specified one-module-at-a-time ('self.py_modules') or by whole
packages ('self.packages'). |
|
|
|
|
|
|
|
| get_module_outfile(self,
build_dir,
package,
module) |
|
|
|
|
| get_outputs(self,
include_bytecode=1) |
|
|
|
|
| build_module(self,
module,
module_file,
package) |
|
|
|
|
|
|
|
|
|
|
| byte_compile(self,
files) |
|
|
|
Inherited from cmd.Command:
__getattr__,
__init__,
announce,
copy_file,
copy_tree,
debug_print,
dump_options,
ensure_dirname,
ensure_filename,
ensure_finalized,
ensure_string,
ensure_string_list,
execute,
get_command_name,
get_finalized_command,
get_sub_commands,
make_archive,
make_file,
mkpath,
move_file,
reinitialize_command,
run_command,
set_undefined_options,
spawn,
warn
|