gpt4 book ai didi

python - 如何使 BuildDoc 仅在从 setup.py 文件安装 python-sphinx 时才工作?

转载 作者:行者123 更新时间:2023-12-01 02:37:02 25 4
gpt4 key购买 nike

我的项目有一个 setup.py 文件 FlashText :

from setuptools import setup, Command
from sphinx.setup_command import BuildDoc

setup(
.
.
cmdclass={'test': PyTest, 'build_sphinx': BuildDoc},
)

pip install flashtext 如果未安装 python-sphinx,则会失败。

ImportError: No module named sphinx.setup_command


Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-LI0I_O/flashtext/

这将解决该问题:

sudo apt-get install python-sphinx

我需要的是,如果有人没有安装python-sphinx,那么他们也应该能够安装该库。我该如何处理?

例如 py.test 的处理方式如下:

import subprocess


class PyTest(Command):
user_options = []

def initialize_options(self):
pass

def finalize_options(self):
pass

def run(self):
errno = subprocess.call(['py.test'])
raise SystemExit(errno)

PS:完整代码可在 github 上获取 https://github.com/vi3k6i5/flashtext

最佳答案

cmdclass={'test': PyTest}

try:
from sphinx.setup_command import BuildDoc
cmdclass['build_sphinx'] = BuildDoc
except ImportError:
print('WARNING: sphinx not available, not building docs')

setup(
.
.
cmdclass=cmdclass
)

关于python - 如何使 BuildDoc 仅在从 setup.py 文件安装 python-sphinx 时才工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46111049/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com