2022-11-25 13:16:36 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
2025-01-07 20:46:31 +01:00
|
|
|
setup(name='ifcopenshell',
|
2024-06-27 11:45:05 +10:00
|
|
|
version='0.8.0',
|
2022-11-25 13:16:36 +01:00
|
|
|
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(),
|
2025-09-29 11:55:42 +01:00
|
|
|
package_data={'ifcopenshell': ['util/schema/*.json', 'util/schema/*.ifc'], '': ['*.so', '*.json', '*.ifc']},
|
2022-11-25 13:16:36 +01:00
|
|
|
)
|