diff --git a/tasks/vendoring/__init__.py b/tasks/vendoring/__init__.py index 21b09307..5199b020 100644 --- a/tasks/vendoring/__init__.py +++ b/tasks/vendoring/__init__.py @@ -335,6 +335,16 @@ def post_install_cleanup(ctx, vendor_dir): remove_all(vendor_dir.glob("toml.py")) + remove_all(vendor_dir / "dotenv" / "cli.py") + remove_all(vendor_dir / "dotenv" / "__main__.py") + + remove_all(vendor_dir / "plette" / "__main__.py") + + remove_all(vendor_dir / "pipdeptree" / "__main__.py") + + remove_all(vendor_dir / "pythonfinder" / "__main__.py") + remove_all(vendor_dir / "pythonfinder" / "cli.py") + @invoke.task def apply_patches(ctx, patched=False, pre=False):