Skip to content

Hatch build hook plugin to inject code that will automatically run

License

Notifications You must be signed in to change notification settings

ofek/hatch-autorun

Repository files navigation

hatch-autorun

CI/CD CI - Test CD - Build
Package PyPI - Version PyPI - Python Version
Meta Hatch project code style - black types - Mypy License - MIT GitHub Sponsors

This provides a build hook plugin for Hatch that injects code into an installation that will automatically run before the first import.

Table of Contents

Configuration

The build hook plugin name is autorun.

  • pyproject.toml

    [tool.hatch.build.targets.wheel.hooks.autorun]
    dependencies = ["hatch-autorun"]
  • hatch.toml

    [build.targets.wheel.hooks.autorun]
    dependencies = ["hatch-autorun"]

File

You can select a relative path to a file containing the code with the file option:

[tool.hatch.build.targets.wheel.hooks.autorun]
file = "resources/code.emded"

Code

You can define the code itself with the code option:

[tool.hatch.build.targets.wheel.hooks.autorun]
code = """
import coverage
coverage.process_startup()
"""

Template

The current implementation uses a .pth file to execute the code. You can set the .pth file template with the template option, which will be formatted with a code variable representing the code option or the contents of the file defined by the file option. The following shows the default template:

[tool.hatch.build.targets.wheel.hooks.autorun]
template = "import os, sys;exec({code!r})"

Conditional execution

Sometimes you'll only want builds to induce auto-run behavior when installed under certain circumstances, like for tests. In such cases, set the enable-by-default option to false:

[tool.hatch.build.targets.wheel.hooks.autorun]
enable-by-default = false

Then when the desired build conditions are met, set the HATCH_BUILD_HOOK_ENABLE_AUTORUN environment variable to true or 1.

License

hatch-autorun is distributed under the terms of the MIT license.

About

Hatch build hook plugin to inject code that will automatically run

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages