Files
IfcOpenShell/pyodide/setup.py
T
Thomas Krijnen 3ced6e7bb1 wasm wheel fixes
2025-01-07 13:23:10 +01:00

12 lines
425 B
Python

from setuptools import setup, find_packages
setup(name='ifcopenshell-python',
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']},
)