We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4396126 commit d1ffb32Copy full SHA for d1ffb32
pyodide/setup.py
@@ -5,8 +5,7 @@
5
from pathlib import Path
6
7
import tomllib
8
-from setuptools import Extension, setup
9
-
+from setuptools import Extension, find_packages, setup
10
11
REPO_FOLDER = Path(__file__).parent
12
@@ -37,7 +36,7 @@ def get_dependencies() -> list[str]:
37
36
author_email="thomas@aecgeeks.com",
38
url="https://ifcopenshell.org",
39
install_requires=get_dependencies(),
40
- packages=["ifcopenshell"],
+ packages=find_packages(include=["ifcopenshell", "ifcopenshell.*"]),
41
package_data={
42
# "*.so" is needed to include prebuilt binary extension. Otherwise it would try to build it and fail.
43
"ifcopenshell": ["util/schema/*.json", "util/schema/*.ifc", "*.so"],
0 commit comments