我正在尝试安装存储库(例如repo1)作为其他存储库中的pip依赖项(例如repo2)。我在repo1中添加了setup.py文件,看起来像
from setuptools import setup, find_packages
setup(
name='abc',
version='1.0',
packages=find_packages(),
url='https://bitbucket.abc.com/scm/cd/xyz',
author='ABC',
author_email='abc@xyz.com',
description='Module',
install_requires=[
'numpy',
'fiona'
],
dependency_links=
['git+https:/abc.git',
git+https://www.github.com/keras-team/keras-contrib.git',
git+https://xyz.git#egg=xyz',
],
)
当我尝试运行此脚本时,请勿在repo1中安装相关链接。
此方法是否还有其他最佳方法/我做错了什么吗?