From 1492a660c83411fb14201bb49cb0d33455dfb32c Mon Sep 17 00:00:00 2001 From: myoualid Date: Mon, 29 Sep 2025 11:55:42 +0100 Subject: [PATCH] adding paths to include schema files for wasm build (#7168) --- MANIFEST.in | 2 -- pyodide/setup.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index a02aa6ecd7..0000000000 --- a/MANIFEST.in +++ /dev/null @@ -1,2 +0,0 @@ -recursive-include src/ifcopenshell-python/ifcopenshell/util/schema *.json -recursive-include src/ifcopenshell-python/ifcopenshell/util/schema *.ifc \ No newline at end of file diff --git a/pyodide/setup.py b/pyodide/setup.py index 01250a89e7..e35a5f5340 100644 --- a/pyodide/setup.py +++ b/pyodide/setup.py @@ -7,5 +7,5 @@ setup(name='ifcopenshell', author_email='thomas@aecgeeks.com', url='http://ifcopenshell.org', packages=find_packages(), - package_data={'': ['*.so', '*.json', '*.ifc']}, + package_data={'ifcopenshell': ['util/schema/*.json', 'util/schema/*.ifc'], '': ['*.so', '*.json', '*.ifc']}, )