#!/bin/sh
set -e

python3 -c "
import ifcopenshell
print('ifcopenshell version:', ifcopenshell.version)

# Create a minimal IFC model and verify round-trip
model = ifcopenshell.file()
project = model.create_entity('IfcProject', GlobalId=ifcopenshell.guid.new(), Name='Test')
assert project.Name == 'Test'
print('Basic entity creation: OK')
"
