Why is dependency links in setup.py deprecated?
There are quite a few people wondering for an alternative to dependency links in the setup.py (activated with the pip flag --process-dependency-links ): What is the alternative to using --process-dependency-links with pip , Depend on git repository in setup.py . Basically, I got bitten by the deprecation warning: "DEPRECATION: Dependency Links processing has been deprecated and will be removed in a future release." Some people have suggested using requirements.txt , however that is not an alternative as it is meant to provide an entire environment, usually more associated with development. The