From 9b4ffdad4c0bf3647d77477fdda7103c5abf9f17 Mon Sep 17 00:00:00 2001 From: tpateeq Date: Thu, 9 Jul 2026 01:46:02 +0530 Subject: [PATCH] build: package the new graphify.exporters subpackage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit setuptools uses an explicit package list, so the new graphify/exporters/ package (base, html, graphdb — split out of export.py) was absent from the built wheel, which would break `import graphify.exporters.*` for installed users. Add it alongside graphify and graphify.extractors. No version change. Verified: fresh-venv install of the rebuilt wheel imports every new module, resolves all backward-compat re-exports, builds a multi-language graph, and runs query/path/explain and install/uninstall. Co-Authored-By: Claude Opus 4.8 (1M context) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7fbde83e0..67c63e42b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -111,7 +111,7 @@ dev = [ package = true [tool.setuptools] -packages = ["graphify", "graphify.extractors"] +packages = ["graphify", "graphify.extractors", "graphify.exporters"] include-package-data = false [tool.setuptools.package-data]