"""
Inscoper NBO Example Script: Verify Installation
===============================================
This script verifies that the inscoper_nbo module is installed and reports the
version of the underlying native NBO library.

Prerequisites:
-------------
1. Installation: The `inscoper_nbo` wheel must be installed in the active Python
   environment.
"""

# --8<-- [start:main_logic]
import inscoper_nbo

# Version of the Python package, as declared by the wheel
print(inscoper_nbo.__version__)

# Full identification string of the native NBO library
print(inscoper_nbo.NBOUtils.getVersion())
# --8<-- [end:main_logic]
