I am working with custom module prefix for custom tryton modules, say ‘my_prefix’ instead of default ‘trytond’.
I have custom modules that depend on other custom modules.
Before the transition to pyproject.toml, in setup.py, there has been a dict
MODULE2PREFIX = {'modulename': 'my_prefix'}
to give the correct prefix for custom modules dependancy.
Is it possible to give this prefix information in pyproject.toml?
Thanks for any hint.