adding paths to include schema files for wasm build (#7168)

This commit is contained in:
myoualid
2025-09-29 11:55:42 +01:00
parent 7a931ea6f2
commit 1492a660c8
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -1,2 +0,0 @@
recursive-include src/ifcopenshell-python/ifcopenshell/util/schema *.json
recursive-include src/ifcopenshell-python/ifcopenshell/util/schema *.ifc
+1 -1
View File
@@ -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']},
)