(self)
| 56 | self.python_exe = python_exe |
| 57 | |
| 58 | def meson_build_template(self) -> str: |
| 59 | if not self.build_template_path.is_file(): |
| 60 | raise FileNotFoundError( |
| 61 | errno.ENOENT, |
| 62 | "Meson build template" |
| 63 | f" {self.build_template_path.absolute()}" |
| 64 | " does not exist.", |
| 65 | ) |
| 66 | return self.build_template_path.read_text() |
| 67 | |
| 68 | def initialize_template(self) -> None: |
| 69 | self.substitutions["modulename"] = self.modulename |
no outgoing calls
no test coverage detected