Home | History | Annotate | Download | only in distutils

Lines Matching refs:base_name

51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,

77 archive_name = base_name + '.tar'
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
124 The output zip file will be named 'base_name' + ".zip". Uses either the
135 zip_filename = base_name + ".zip"
193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
197 'base_name' is the name of the file to create, minus any format-specific
214 base_name = os.path.abspath(base_name)
237 filename = func(base_name, base_dir, **kwargs)