From 4c372881c1e2b80e7dbad6936fb306d9944971cf Mon Sep 17 00:00:00 2001 From: omicron Date: Fri, 9 Jan 2026 15:32:43 +0100 Subject: [PATCH] Fix broken installation Changes the setuptools config to install all subpackages, not just the top level mft package. Fixes #2. --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6225f61..4d7cf75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,8 +21,9 @@ build-backend = "setuptools.build_meta" [project.scripts] mft = "mft.cli:main" -[tool.setuptools] -packages = ["mft"] +[tool.setuptools.packages.find] +where = ["."] +include = ["mft*"] [tool.setuptools.package-data] mft = ["static/*", "schema/*"]