Lines Matching refs:filelist
15 from distutils.filelist import FileList
141 # 'filelist' contains the list of files that will make up the
143 self.filelist = FileList()
151 # whatever). File list is accumulated in 'self.filelist'.
172 distribution, and put it in 'self.filelist'. This might involve
187 self.filelist.sort()
188 self.filelist.remove_duplicates()
195 self.filelist.findall()
206 self.filelist.sort()
207 self.filelist.remove_duplicates()
211 """Add all the default files to self.filelist:
258 self.filelist.append(fn)
266 self.filelist.append(fn)
274 self.filelist.extend(files)
284 self.filelist.extend(build_py.get_source_files())
290 self.filelist.append(os.path.join(src_dir, filename))
300 self.filelist.append(item)
307 self.filelist.append(f)
312 self.filelist.extend(build_ext.get_source_files())
317 self.filelist.extend(build_clib.get_source_files())
322 self.filelist.extend(build_scripts.get_source_files())
328 'self.filelist', which updates itself accordingly.
342 self.filelist.process_template_line(line)
364 self.filelist.exclude_pattern(None, prefix=build.build_base)
365 self.filelist.exclude_pattern(None, prefix=base_dir)
375 self.filelist.exclude_pattern(vcs_ptrn, is_regex=1)
378 """Write the file list in 'self.filelist' (presumably as filled in
387 content = self.filelist.files[:]
406 fill in 'self.filelist', the list of files to include in the source
416 self.filelist.append(line)
473 self.make_release_tree(base_dir, self.filelist.files)