Lines Matching full:distribution
3 Implements the Distutils 'sdist' command (create a source distribution)."""
34 "List of available source distribution formats:")
38 description = "create a source distribution (tarball, zip file, etc.)"
69 "formats for source distribution (comma-separated list)"),
71 "keep the distribution tree around after creating " +
74 "directory to put the source distribution archive(s) in "
91 "list available distribution formats", show_formats),
166 # Otherwise, go ahead and create the source distribution tarball,
174 check = self.distribution.get_command_obj('check')
180 distribution, and put it in 'self.filelist'. This might involve
233 standards = [('README', 'README.txt'), self.distribution.script_name]
265 if self.distribution.has_pure_modules():
274 # getting distribution.data_files
275 if self.distribution.has_data_files():
276 for item in self.distribution.data_files:
288 if self.distribution.has_ext_modules():
292 if self.distribution.has_c_libraries():
296 if self.distribution.has_scripts():
342 base_dir = self.distribution.get_fullname()
389 distribution.
403 distribution archive. All directories implied by the filenames in
407 directory named after the distribution, containing only the files
421 # we're done making the distribution archives.)
441 self.distribution.metadata.write_pkg_info(base_dir)
444 """Create the source distribution(s). First, we create the release
453 base_dir = self.distribution.get_fullname()
466 self.distribution.dist_files.append(('sdist', '', file))