Equivalent for `–find-links` in `setup.py`
In a setuptools context the dependency_links option should do what you need. According to setuptools documentation, this option accepts: the URLs of web pages that contain direct download links for example: setuptools.setup( # … dependency_links=[ “http://peak.telecommunity.com/snapshots/”, ], ) Important note regarding pip: Since its version 19.0, released on 2019-01-22, pip ignores the setuptools options dependency_links. … Read more