(self, path)
| 21 | self.files = set() |
| 22 | |
| 23 | def include(self, path): |
| 24 | matching_files = file_utils.search_glob(path, recursive=True) |
| 25 | |
| 26 | for file in matching_files: |
| 27 | self.files.add(file) |
| 28 | |
| 29 | def exclude(self, path): |
| 30 | matching_files = file_utils.search_glob(path, recursive=True) |