I'm setting up a local PyPI repository on self-managed GitLab for wheels that cannot be made public. Pip is configured to look for wheels there. If not found, GitLab forwards request to global PyPI.
This can lead to distribution name conflicts, so I'd like to specify in pyproject.toml
which dependency come from which PyPI. I think it's possible with Poetry, but I cannot find anything suitable in Setuptools documentation.
Do Setuptools support multiple PyPI indices?