Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(1) | Derive(0) | Import(3)
src/p/y/py2app-0.8/py2app/build_app.py py2app(Download)
from py2app.create_appbundle import create_appbundle from py2app.create_pluginbundle import create_pluginbundle from py2app.util import \ fancy_split, byte_compile, make_loader, imp_find_module, \ copy_tree, fsencoding, strip_files, in_system_path, makedirs, \
def framework_copy_condition(src): # Skip Headers, .svn, and CVS dirs return skipscm(src) and os.path.basename(src) != 'Headers' class PythonStandalone(macholib.MachOStandalone.MachOStandalone):
src/p/y/py2app-0.8/py2app/create_pluginbundle.py py2app(Download)
import py2app.bundletemplate from py2app.util import makedirs, mergecopy, mergetree, skipscm, make_exec def create_pluginbundle(destdir, name, extension='.plugin', module=py2app.bundletemplate,
src/p/y/py2app-0.8/py2app/create_appbundle.py py2app(Download)
from pkg_resources import resource_filename import py2app.apptemplate from py2app.util import makedirs, mergecopy, mergetree, skipscm, make_exec def create_appbundle(destdir, name, extension='.app', module=py2app.apptemplate,