core.py 文件源码

python
阅读 18 收藏 0 点赞 0 评论 0

项目:packit 作者: ncbi 项目源码 文件源码
def patch_setuptools(fetch_directives=('index_url', 'find_links')):

    orig = easy_install.finalize_options

    def patched_finalize_options(self):
        cmd = PipInstallCommand()
        config = cmd.parser.parse_args([])[0]
        for option in fetch_directives:
            try:
                value = getattr(config, option)
            except AttributeError:
                continue
            setattr(self, option, value)
        orig(self)

    easy_install.finalize_options = patched_finalize_options
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号