From 5071172daa427a7745e705e286947b028394183b Mon Sep 17 00:00:00 2001 From: Joseph Magly <1159087+jmagly@users.noreply.github.com> Date: Wed, 5 Aug 2026 13:48:52 -0400 Subject: [PATCH] Package the local UI app module --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6411acb..d6cd070 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,6 +55,11 @@ spaces = ["gradio>=5.0,<6.0"] [project.scripts] obliteratus = "obliteratus.cli:main" +[tool.setuptools] +# The local UI launcher imports the Hugging Face Spaces application module. +# Include that top-level module in wheels as well as editable/source installs. +py-modules = ["app"] + [tool.setuptools.packages.find] include = ["obliteratus*"]