Fix broken installation

Changes the setuptools config to install all subpackages, not just the
top level mft package. Fixes #2.
This commit is contained in:
2026-01-09 15:32:43 +01:00
parent ec9b3b56fb
commit 4c372881c1

View File

@@ -21,8 +21,9 @@ build-backend = "setuptools.build_meta"
[project.scripts] [project.scripts]
mft = "mft.cli:main" mft = "mft.cli:main"
[tool.setuptools] [tool.setuptools.packages.find]
packages = ["mft"] where = ["."]
include = ["mft*"]
[tool.setuptools.package-data] [tool.setuptools.package-data]
mft = ["static/*", "schema/*"] mft = ["static/*", "schema/*"]