1

构建依赖于其他源代码控制存储库中的项目(例如,不在 pypi 上的私有项目)的 python 项目的惯用方式是什么?

假设我有一个项目foobar托管在https://example.com/foobar.git,我想将它包含在setup.py另一个项目中。

是否有类似于 maven 的 scm 插件的东西,我可以在其中指定类似的东西Extension('foobar', scm='scm:git:https://example.com/foobar.git')

4

1 回答 1

4

您可以使用以下选项指定其他位置来安装依赖dependency_links项:

setup(
    ...
    dependency_links=[
        'git+https://example.com/spamneggs/foobar.git#egg=foobar-1.2.3'
    ]
    install_requires=[
        'foobar',
    ]
)

dependency_links条目用于查找包,对于 SCM 存储的包,#egg=package-version片段标识符让工具知道将在该链接上找到哪个包和哪个版本。

请参阅 setuptools 项目文档的“不在 PyPI 中的依赖项”一章。

于 2013-02-25T12:51:24.847 回答