1__all__ = ['FFI', 'VerificationError', 'VerificationMissing', 'CDefError',
2           'FFIError']
3
4from .api import FFI
5from .error import CDefError, FFIError, VerificationError, VerificationMissing
6from .error import PkgConfigError
7
8__version__ = "1.12.2"
9__version_info__ = (1, 12, 2)
10
11# The verifier module file names are based on the CRC32 of a string that
12# contains the following version number.  It may be older than __version__
13# if nothing is clearly incompatible.
14__version_verifier_modules__ = "0.8.6"
15