Files
IfcOpenShell/pyodide/setup.py
Thomas Krijnen a42a49e088 wasm wheel fixes
2025-01-07 20:47:25 +01:00

12 lines
428 B
Python

from setuptools import setup, find_packages
setup(name='ifcopenshell',
version='0.8.0',
description='IfcOpenShell is an open source (LGPL) software library for working with the Industry Foundation Classes (IFC) file format.',
author='Thomas Krijnen',
author_email='thomas@aecgeeks.com',
url='http://ifcopenshell.org',
packages=find_packages(),
package_data={'': ['*.so', '*.json']},
)