Given the following pyproject.toml
[build-system]
requires = [
"setuptools",
"custom_buildpackage"
]
build-backend = "setuptools.build_meta"
how do I specify that custom_buildpackage (and only it) is to be installed from a package-index other than the one at pypi.org?
I know that these are options:
1.) Set environment variables for pip to use an --extra-index-url or --index-url
2.) Set the (extra-)index in ~/.config/pip.conf
3.) Install the package beforehand from the other index