From 71aa30a25fdafd13449cf289b00f4cbef3cbfefe Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Wed, 17 Jul 2024 23:08:17 +1000 Subject: [PATCH] Fix ifc5d packaging missing json mapping files --- src/ifc5d/pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ifc5d/pyproject.toml b/src/ifc5d/pyproject.toml index 55aaf9e6de..93ee167207 100644 --- a/src/ifc5d/pyproject.toml +++ b/src/ifc5d/pyproject.toml @@ -25,5 +25,8 @@ Documentation = "https://docs.ifcopenshell.org" Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues" [tool.setuptools.packages.find] -include = ["ifc5d"] +include = ["ifc5d*"] exclude = ["test*"] + +[tool.setuptools.package-data] +"*" = ["*.*"]