RapidFuzz C-API
About
This package provides the C-API of RapidFuzz. It can be used inside the pyproject.toml
to compile and extension module extending RapidFuzz. Providing this C-API in a separate package simplifies the build process. It allows the usage on platforms which are not supported by RapidFuzz, or for which RapidFuzz does not provide wheels (e.g. because they are not officially supported by numpy). Us this as:
[build-system]
requires = ["wheel", "setuptools", "rapidfuzz_capi==1.0.5"]
Similar to numpy the include path can be found in the following way:
import rapidfuzz_capi
rapidfuzz_capi.get_include()