Orbits
1
|
Classes | |
class | bdist_egg |
Functions | |
def | _get_purelib |
def | strip_module |
def | write_stub |
def | walk_egg |
def | analyze_egg |
def | write_safety_flag |
def | scan_module |
def | iter_symbols |
def | can_scan |
def | make_zipfile |
Variables | |
tuple | NATIVE_EXTENSIONS = dict.fromkeys('.dll .so .dylib .pyd'.split()) |
dictionary | safety_flags |
list | INSTALL_DIRECTORY_ATTRS |
setuptools.command.bdist_egg Build .egg distributions
|
private |
def setuptools.command.bdist_egg.analyze_egg | ( | egg_dir, | |
stubs | |||
) |
def setuptools.command.bdist_egg.can_scan | ( | ) |
def setuptools.command.bdist_egg.iter_symbols | ( | code | ) |
Yield names and strings used by `code` and its nested code objects
def setuptools.command.bdist_egg.make_zipfile | ( | zip_filename, | |
base_dir, | |||
verbose = 0 , |
|||
dry_run = 0 , |
|||
compress = None , |
|||
mode = 'w' |
|||
) |
Create a zip file from all the files under 'base_dir'. The output zip file will be named 'base_dir' + ".zip". Uses either the "zipfile" Python module (if available) or the InfoZIP "zip" utility (if installed and found on the default search path). If neither tool is available, raises DistutilsExecError. Returns the name of the output zip file.
def setuptools.command.bdist_egg.scan_module | ( | egg_dir, | |
base, | |||
name, | |||
stubs | |||
) |
Check whether module possibly uses unsafe-for-zipfile stuff
def setuptools.command.bdist_egg.strip_module | ( | filename | ) |
def setuptools.command.bdist_egg.walk_egg | ( | egg_dir | ) |
Walk an unpacked egg's contents, skipping the metadata directory
def setuptools.command.bdist_egg.write_safety_flag | ( | egg_dir, | |
safe | |||
) |
def setuptools.command.bdist_egg.write_stub | ( | resource, | |
pyfile | |||
) |
list setuptools.command.bdist_egg.INSTALL_DIRECTORY_ATTRS |
tuple setuptools.command.bdist_egg.NATIVE_EXTENSIONS = dict.fromkeys('.dll .so .dylib .pyd'.split()) |
dictionary setuptools.command.bdist_egg.safety_flags |
Copyright 2014 Google Inc. All rights reserved.