通过setup.py打包不安装从属存储库

时间:2018-11-22 11:32:56

标签: python-3.x

我正在尝试安装存储库(例如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中安装相关链接。

此方法是否还有其他最佳方法/我做错了什么吗?

0 个答案:

没有答案