From ac8bbc6e83cd901aa7b679d12af8daba8dd61610 Mon Sep 17 00:00:00 2001 From: Robert Lippmann Date: Fri, 6 Mar 2026 02:42:31 -0500 Subject: [PATCH] Expose the REPL as the package CLI --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8bc079c..68cf46c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,9 @@ license = { text = "Apache-2.0" } authors = [{ name = "Robert Lippmann" }] dependencies = [] +[project.scripts] +context-compiler = "context_compiler.repl:main" + [tool.hatch.build.targets.wheel] packages = ["src/context_compiler"] @@ -55,4 +58,4 @@ mypy_path = "src" [tool.pytest.ini_options] addopts = "-ra" -testpaths = ["tests"] \ No newline at end of file +testpaths = ["tests"]