當前位置: 首頁>>代碼示例>>Python>>正文


Python pyproject.load_pyproject_toml方法代碼示例

本文整理匯總了Python中pip._internal.pyproject.load_pyproject_toml方法的典型用法代碼示例。如果您正苦於以下問題:Python pyproject.load_pyproject_toml方法的具體用法?Python pyproject.load_pyproject_toml怎麽用?Python pyproject.load_pyproject_toml使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pip._internal.pyproject的用法示例。


在下文中一共展示了pyproject.load_pyproject_toml方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: load_pyproject_toml

# 需要導入模塊: from pip._internal import pyproject [as 別名]
# 或者: from pip._internal.pyproject import load_pyproject_toml [as 別名]
def load_pyproject_toml(self):
        """Load the pyproject.toml file.

        After calling this routine, all of the attributes related to PEP 517
        processing for this requirement have been set. In particular, the
        use_pep517 attribute can be used to determine whether we should
        follow the PEP 517 or legacy (setup.py) code path.
        """
        pep517_data = load_pyproject_toml(
            self.use_pep517,
            self.pyproject_toml,
            self.setup_py,
            str(self)
        )

        if pep517_data is None:
            self.use_pep517 = False
        else:
            self.use_pep517 = True
            requires, backend, check = pep517_data
            self.requirements_to_check = check
            self.pyproject_requires = requires
            self.pep517_backend = Pep517HookCaller(self.setup_py_dir, backend) 
開發者ID:luckystarufo,項目名稱:pySINDy,代碼行數:25,代碼來源:req_install.py

示例2: load_pyproject_toml

# 需要導入模塊: from pip._internal import pyproject [as 別名]
# 或者: from pip._internal.pyproject import load_pyproject_toml [as 別名]
def load_pyproject_toml(self):
        # type: () -> None
        """Load the pyproject.toml file.

        After calling this routine, all of the attributes related to PEP 517
        processing for this requirement have been set. In particular, the
        use_pep517 attribute can be used to determine whether we should
        follow the PEP 517 or legacy (setup.py) code path.
        """
        pyproject_toml_data = load_pyproject_toml(
            self.use_pep517,
            self.pyproject_toml_path,
            self.setup_py_path,
            str(self)
        )

        if pyproject_toml_data is None:
            self.use_pep517 = False
            return

        self.use_pep517 = True
        requires, backend, check, backend_path = pyproject_toml_data
        self.requirements_to_check = check
        self.pyproject_requires = requires
        self.pep517_backend = Pep517HookCaller(
            self.unpacked_source_directory, backend, backend_path=backend_path,
        ) 
開發者ID:pantsbuild,項目名稱:pex,代碼行數:29,代碼來源:req_install.py

示例3: load_pyproject_toml

# 需要導入模塊: from pip._internal import pyproject [as 別名]
# 或者: from pip._internal.pyproject import load_pyproject_toml [as 別名]
def load_pyproject_toml(self):
        # type: () -> None
        """Load the pyproject.toml file.

        After calling this routine, all of the attributes related to PEP 517
        processing for this requirement have been set. In particular, the
        use_pep517 attribute can be used to determine whether we should
        follow the PEP 517 or legacy (setup.py) code path.
        """
        pep517_data = load_pyproject_toml(
            self.use_pep517,
            self.pyproject_toml,
            self.setup_py,
            str(self)
        )

        if pep517_data is None:
            self.use_pep517 = False
        else:
            self.use_pep517 = True
            requires, backend, check = pep517_data
            self.requirements_to_check = check
            self.pyproject_requires = requires
            self.pep517_backend = Pep517HookCaller(self.setup_py_dir, backend)

            # Use a custom function to call subprocesses
            self.spin_message = ""

            def runner(cmd, cwd=None, extra_environ=None):
                with open_spinner(self.spin_message) as spinner:
                    call_subprocess(
                        cmd,
                        cwd=cwd,
                        extra_environ=extra_environ,
                        show_stdout=False,
                        spinner=spinner
                    )
                self.spin_message = ""

            self.pep517_backend._subprocess_runner = runner 
開發者ID:QData,項目名稱:deepWordBug,代碼行數:42,代碼來源:req_install.py

示例4: load_pyproject_toml

# 需要導入模塊: from pip._internal import pyproject [as 別名]
# 或者: from pip._internal.pyproject import load_pyproject_toml [as 別名]
def load_pyproject_toml(self):
        # type: () -> None
        """Load the pyproject.toml file.

        After calling this routine, all of the attributes related to PEP 517
        processing for this requirement have been set. In particular, the
        use_pep517 attribute can be used to determine whether we should
        follow the PEP 517 or legacy (setup.py) code path.
        """
        pyproject_toml_data = load_pyproject_toml(
            self.use_pep517,
            self.pyproject_toml_path,
            self.setup_py_path,
            str(self)
        )

        if pyproject_toml_data is None:
            self.use_pep517 = False
            return

        self.use_pep517 = True
        requires, backend, check = pyproject_toml_data
        self.requirements_to_check = check
        self.pyproject_requires = requires
        self.pep517_backend = Pep517HookCaller(
            self.unpacked_source_directory, backend
        ) 
開發者ID:boris-kz,項目名稱:CogAlg,代碼行數:29,代碼來源:req_install.py

示例5: load_pyproject_toml

# 需要導入模塊: from pip._internal import pyproject [as 別名]
# 或者: from pip._internal.pyproject import load_pyproject_toml [as 別名]
def load_pyproject_toml(self):
        # type: () -> None
        """Load the pyproject.toml file.

        After calling this routine, all of the attributes related to PEP 517
        processing for this requirement have been set. In particular, the
        use_pep517 attribute can be used to determine whether we should
        follow the PEP 517 or legacy (setup.py) code path.
        """
        pep517_data = load_pyproject_toml(
            self.use_pep517,
            self.pyproject_toml,
            self.setup_py,
            str(self)
        )

        if pep517_data is None:
            self.use_pep517 = False
        else:
            self.use_pep517 = True
            requires, backend, check = pep517_data
            self.requirements_to_check = check
            self.pyproject_requires = requires
            self.pep517_backend = Pep517HookCaller(self.setup_py_dir, backend)

            # Use a custom function to call subprocesses
            self.spin_message = ""

            def runner(
                cmd,  # type: List[str]
                cwd=None,  # type: Optional[str]
                extra_environ=None  # type: Optional[Mapping[str, Any]]
            ):
                # type: (...) -> None
                with open_spinner(self.spin_message) as spinner:
                    call_subprocess(
                        cmd,
                        cwd=cwd,
                        extra_environ=extra_environ,
                        spinner=spinner
                    )
                self.spin_message = ""

            self.pep517_backend._subprocess_runner = runner 
開發者ID:PacktPublishing,項目名稱:Mastering-Elasticsearch-7.0,代碼行數:46,代碼來源:req_install.py

示例6: load_pyproject_toml

# 需要導入模塊: from pip._internal import pyproject [as 別名]
# 或者: from pip._internal.pyproject import load_pyproject_toml [as 別名]
def load_pyproject_toml(self):
        # type: () -> None
        """Load the pyproject.toml file.

        After calling this routine, all of the attributes related to PEP 517
        processing for this requirement have been set. In particular, the
        use_pep517 attribute can be used to determine whether we should
        follow the PEP 517 or legacy (setup.py) code path.
        """
        pyproject_toml_data = load_pyproject_toml(
            self.use_pep517,
            self.pyproject_toml_path,
            self.setup_py_path,
            str(self)
        )

        self.use_pep517 = (pyproject_toml_data is not None)

        if not self.use_pep517:
            return

        requires, backend, check = pyproject_toml_data
        self.requirements_to_check = check
        self.pyproject_requires = requires
        self.pep517_backend = Pep517HookCaller(self.setup_py_dir, backend)

        # Use a custom function to call subprocesses
        self.spin_message = ""

        def runner(
            cmd,  # type: List[str]
            cwd=None,  # type: Optional[str]
            extra_environ=None  # type: Optional[Mapping[str, Any]]
        ):
            # type: (...) -> None
            with open_spinner(self.spin_message) as spinner:
                call_subprocess(
                    cmd,
                    cwd=cwd,
                    extra_environ=extra_environ,
                    spinner=spinner
                )
            self.spin_message = ""

        self.pep517_backend._subprocess_runner = runner 
開發者ID:V1EngineeringInc,項目名稱:V1EngineeringInc-Docs,代碼行數:47,代碼來源:req_install.py


注:本文中的pip._internal.pyproject.load_pyproject_toml方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。