I have set up a devpi server to host my own Python modules. I would like to use pip to install them and for pip to install in preference my modules, not those in PyPi.
So far, I have this:
[global]
timeout = 60
index-url = http://devpi.example.org/root/public/+simple/
trusted-host = devpi.example.org
extra-index-url = http://devpi.example.org/root/pypi/+simple/
Which works fine as long as there is no name conflict. If there is, the highest version wins which is not what I want.
I really do not wish to register empty projects on PyPi just to have the names reserved.
Is there any way to get what I want?