(path: Path)
| 40 | |
| 41 | |
| 42 | def py_path_to_module(path: Path) -> str: |
| 43 | return ( |
| 44 | str(path.relative_to(os.getcwd()))[: -len(".py")] |
| 45 | .replace("./", "") |
| 46 | .replace("/", ".") |
| 47 | .replace("\\", ".") |
| 48 | ) |
| 49 | |
| 50 | |
| 51 | def read_feastignore(repo_root: Path) -> List[str]: |