#!/usr/bin/env python3"""QEMU tooling installer scriptCopyright (c) 2020-2021 John Snow for Red Hat, Inc."""import setuptoolsfrom setuptools.command import bdist_eggimport sysimport pkg_resourcesclass bdist_egg_guard(bdist_egg.bdist_egg):"""Protect against bdist_egg from being executedThis prevents calling 'setup.py install' directly, as the 'install'CLI option will invoke the deprecated bdist_egg hook. "pip install"calls the more modern bdist_wheel hook, which is what we want."""def run(self):sys.exit('Installation directly via setup.py is not supported.\n''Please use `pip install .` instead.')def main():"""QEMU tooling installer"""# https://medium.com/@daveshawley/safely-using-setup-cfg-for-metadata-1babbe54c108pkg_resources.require('setuptools>=39.2')setuptools.setup(cmdclass={'bdist_egg': bdist_egg_guard})if __name__ == '__main__':main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。