python bindings: build/install via integrated meson support

The meson build system has builtin support for python packaging, and
unlike hatchling it is spec-compliant. Additionally, meson is already
responsible for building the shared library itself, which the python
build backend can then distribute inside the wheel. This allows shipping
a wheel that can find its own liblc3.so via ctypes and doesn't require
passing paths to the library around, nor to install both separately and
hope that this works.
This commit is contained in:
Eli Schwartz
2024-02-16 15:42:30 -05:00
committed by Antoine SOULIER
parent a01c060807
commit 3f05fcb8f2
6 changed files with 27 additions and 5 deletions

3
python/meson.build Normal file
View File

@@ -0,0 +1,3 @@
py = import('python').find_installation()
py.install_sources('lc3.py')