python - 允许 python 包要求在设置中失败

标签 python pip setuptools setup.py

是否有标准方法允许 python 包的要求在包设置脚本中失败?

我正在创建一个类似于 Python Social Auth 的包因为它有许多提供者。

是否有一种标准方法可以让某些提供商的安装要求失败,但仍然可以正常安装软件包?

最佳答案

用户在安装时指定的可选依赖项:

您可以将extras_require 参数用于setup():http://pythonhosted.org/setuptools/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies

setup(
    name="MyProject",
    ...
    extras_require = {
        'ProviderX':  ["DependencyX1", "DependencyX2"],
        'ProviderY': ["DependencyY"],
    }
)

使用这种方法,用户可以要求安装特定的扩展pip install Myproject[ProviderX]

基于现有包的可选依赖项:

为了自动检测已安装的包,您可以动态构建需求列表。例如,您可以看看 matplotlib 是如何做到这一 pip 的(它们有许多可选的绘图后端):https://github.com/matplotlib/matplotlib .

基本上,setup.py 只是常规的 python 代码,因此您可以运行一个函数来检查可选的依赖项,并相应地调整要求和要安装的包列表。

matplotlib 这样做的方式是为依赖项定义一个类,它为每个依赖项扩展(在 setupExt.py 中)。

class SetupPackage(object):
    optional = False

    def check(self):
        """
        Checks whether the dependencies are met. [...]
        """
        pass

    def get_packages(self):
        """
        Get a list of package names to add to the configuration.
        These are added to the `packages` list passed to
        `distutils.setup`.
        """
        return []

    def get_namespace_packages(self):
        """
        Get a list of namespace package names to add to the configuration.
        These are added to the `namespace_packages` list passed to
        `distutils.setup`.
        """
        return []


    def get_py_modules(self):
        """
        Get a list of top-level modules to add to the configuration.
        These are added to the `py_modules` list passed to
        `distutils.setup`.
        """
        return []

    ...

class Numpy(SetupPackage):
    ...

然后它遍历 setup.py 中的每个依赖项,检查是否应该安装它,并相应地扩展每个列表以传递给 setup()

mpl_packages = [
    'Building Matplotlib',
    setupext.Six(),
    setupext.Dateutil(),
    ...

good_packages = []
for package in mpl_packages:
    [...]
    # check and append
    if ...
        good_packages.append(package)

[...]
for package in good_packages:
    if isinstance(package, str):
        continue
    packages.extend(package.get_packages())
    namespace_packages.extend(package.get_namespace_packages())
    py_modules.extend(package.get_py_modules())
    ext = package.get_extension()

关于python - 允许 python 包要求在设置中失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24416702/

相关文章:

python - 使用 setup.py bdist_rpm 删除 Django 测试

python - 使用 webapp 和 Django 表单将文件上传到 App Engine

osx-mountain-lion - pip 安装在 OS X 10.8 上为命令添加了额外的空格

Python 读取日志文件并获取包含特定单词的行

python - Windows + virtualenv + pip + NumPy(安装 NumPy 时出现问题)

Python:在/opt目录中设置pip或conda的权限

python-2.7 - IO错误 : [Errno 13] Permission denied: '/usr/local/lib/netscape/mime.types'

Python 安装程序,将一个模块安装为另一个模块的子模块?

java - Python 服务器只从 Java 客户端接收一个字符?

python - Django REST 框架和文件上传(数据 URI)