mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-06 07:51:47 +00:00
12 lines
418 B
Python
12 lines
418 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']},
|
|
)
|