From 28e8804ab7400c150d71bf829320370918a6eb3a Mon Sep 17 00:00:00 2001 From: Yurii Chukhlib Date: Sat, 17 Jan 2026 11:37:15 +0100 Subject: [PATCH] fix: Add crawl4ai console script entry point Fixes #1705 The `crawl4ai` console script was missing from [project.scripts] in pyproject.toml, causing pip to not generate the launcher executable on Windows. Users could not use `crawl4ai serve` as documented. Added `crawl4ai = "crawl4ai.cli:main"` entry point to match the documented CLI usage. The `crwl` alias remains for backwards compatibility. Co-Authored-By: Claude --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 06d1e4ab0..7eb00fe7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,6 +76,7 @@ all = [ ] [project.scripts] +crawl4ai = "crawl4ai.cli:main" crawl4ai-download-models = "crawl4ai.model_loader:main" crawl4ai-migrate = "crawl4ai.migrations:main" crawl4ai-setup = "crawl4ai.install:post_install"