我想为python软件包创建一个私有的github存储库。
该想法是通过pip从中央git存储库中安装它,
setup.py将具有其他存储库的依赖关系链接。
我知道以后将不推荐使用此功能。
还有其他方法可以在github仓库之间创建依赖关系吗?
并且仍在使用github?
我不想创建自己的pypi服务器。
pip install-升级git + https://github.com/{username}/repo-test1-流程依赖链接
setup.py内容:
name ='repo1-0.3',
version ='0.3',
package = find_packages(排除= ['测试*']),
license ='MIT',
description ='repo1 description',
long_description = open('README.txt')。read(),
install_requires = ['boto3'],
dependency_links = ['git + ssh://git@github.com/ {username} /repo-test2.git#egg=repo2-0.1'],
url ='https://github.com/ {username} / repo-test1',
author ='Amit Shohat'
这就是我得到的:
不推荐使用:依赖性链接处理已被弃用,并将在以后的版本中删除。