From 1dac2263372df2b85db5d029a45721fa158a5c9d Mon Sep 17 00:00:00 2001 From: xiubuzhe Date: Sun, 8 Oct 2023 20:59:00 +0800 Subject: first add files --- lib/cffi/__init__.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/cffi/__init__.py (limited to 'lib/cffi/__init__.py') diff --git a/lib/cffi/__init__.py b/lib/cffi/__init__.py new file mode 100644 index 0000000..90e2e65 --- /dev/null +++ b/lib/cffi/__init__.py @@ -0,0 +1,14 @@ +__all__ = ['FFI', 'VerificationError', 'VerificationMissing', 'CDefError', + 'FFIError'] + +from .api import FFI +from .error import CDefError, FFIError, VerificationError, VerificationMissing +from .error import PkgConfigError + +__version__ = "1.15.1" +__version_info__ = (1, 15, 1) + +# The verifier module file names are based on the CRC32 of a string that +# contains the following version number. It may be older than __version__ +# if nothing is clearly incompatible. +__version_verifier_modules__ = "0.8.6" -- cgit v1.2.3