I am trying to migrate a project with python namespaces from setuptools to meson.
I package it with setuptools with this option in the pyproject.toml
[tool.setuptools.packages.find]
namespaces = True
While trying meson as build backend, I was able to have a working wheel only without the namespace structure. When I tried with the namespace structure I could not import the package because it was not finding the namespace.
Does meson support them?