Equivalent for `--find-links` in `setup.py`

我与影子孤独终老i 提交于 2020-03-05 03:22:23

问题


What is the equivalent of --find-links / -f flag for pip in setup.py.

I know dependency_links exist, but that requires pointing to a specific file, I want something similar to -f that can point to a list of links from which the package can be selected based on version&os.


回答1:


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. The solution in a pip context is to use one of the pip install options --index-url, --extra-index-url, or --find-links.

The rationale behind the decision for pip to drop the support of setuptools dependency_links is (in very short): pip should only download from PyPI unless the user themselves explicitly takes the responsibility to allow downloads from alternatives sources by using one of these previously mentioned options. More details can be found for example in this discussion.



来源:https://stackoverflow.com/questions/60099661/setup-py-install-requires-latest-from-private-pypi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!