Metadata hook plugins¶
Metadata hooks allow for the modification of project metadata after it has been loaded.
Known third-party¶
- hatch-fancy-pypi-readme - dynamically construct the README
 - hatch-requirements-txt - read project dependencies from 
requirements.txtfiles 
 MetadataHookInterface ¶
 Example usage:
from hatchling.metadata.plugin.interface import MetadataHookInterface
class SpecialMetadataHook(MetadataHookInterface):
    PLUGIN_NAME = 'special'
    ...
from hatchling.plugin import hookimpl
from .plugin import SpecialMetadataHook
@hookimpl
def hatch_register_metadata_hook():
    return SpecialMetadataHook
Source code in hatchling/metadata/plugin/interface.py
 class MetadataHookInterface(ABC):  # no cov
    """
    Example usage:
    === ":octicons-file-code-16: plugin.py"
        ```python
        from hatchling.metadata.plugin.interface import MetadataHookInterface
        class SpecialMetadataHook(MetadataHookInterface):
            PLUGIN_NAME = 'special'
            ...
        ```
    === ":octicons-file-code-16: hooks.py"
        ```python
        from hatchling.plugin import hookimpl
        from .plugin import SpecialMetadataHook
        @hookimpl
        def hatch_register_metadata_hook():
            return SpecialMetadataHook
        ```
    """
    PLUGIN_NAME = ''
    """The name used for selection."""
    def __init__(self, root, config):
        self.__root = root
        self.__config = config
    @property
    def root(self):
        """
        The root of the project tree.
        """
        return self.__root
    @property
    def config(self):
        """
        The hook configuration.
        === ":octicons-file-code-16: pyproject.toml"
            ```toml
            [tool.hatch.metadata.hooks.<PLUGIN_NAME>]
            ```
        === ":octicons-file-code-16: hatch.toml"
            ```toml
            [metadata.hooks.<PLUGIN_NAME>]
            ```
        """
        return self.__config
    @abstractmethod
    def update(self, metadata: dict):
        """
        This updates the metadata mapping of the `project` table in-place.
        """
 PLUGIN_NAME = ''  class-attribute  ¶
 The name used for selection.
 root()  property  ¶
 The root of the project tree.
Source code in hatchling/metadata/plugin/interface.py
 @property
def root(self):
    """
    The root of the project tree.
    """
    return self.__root
 config()  property  ¶
 The hook configuration.
[tool.hatch.metadata.hooks.<PLUGIN_NAME>]
[metadata.hooks.<PLUGIN_NAME>]
Source code in hatchling/metadata/plugin/interface.py
 @property
def config(self):
    """
    The hook configuration.
    === ":octicons-file-code-16: pyproject.toml"
        ```toml
        [tool.hatch.metadata.hooks.<PLUGIN_NAME>]
        ```
    === ":octicons-file-code-16: hatch.toml"
        ```toml
        [metadata.hooks.<PLUGIN_NAME>]
        ```
    """
    return self.__config
 update(metadata: dict)  abstractmethod  ¶
 This updates the metadata mapping of the project table in-place.
Source code in hatchling/metadata/plugin/interface.py
 @abstractmethod
def update(self, metadata: dict):
    """
    This updates the metadata mapping of the `project` table in-place.
    """
  最后更新: August 13, 2022