()
| 61 | |
| 62 | |
| 63 | def main() -> None: |
| 64 | root = Path(__file__).parent.parent.resolve() |
| 65 | |
| 66 | files = collect_files(root) |
| 67 | if not files: |
| 68 | raise FileNotFoundError(f"No requirement files found from {root}") |
| 69 | |
| 70 | outpath = write_combined_req_files(root, files, "sbom-requirements.txt") |
| 71 | print(f"Wrote concatenated requirements to: {outpath}") |
| 72 | |
| 73 | |
| 74 | if __name__ == "__main__": |
no test coverage detected