# hatch-jupyter-builder **Repository Path**: mirrors_jupyterlab/hatch-jupyter-builder ## Basic Information - **Project Name**: hatch-jupyter-builder - **Description**: A hatch plugin to help build Jupyter packages - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-16 - **Last Updated**: 2025-09-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hatch-jupyter-builder [![PyPI - Version](https://img.shields.io/pypi/v/hatch-jupyter-builder.svg)](https://pypi.org/project/hatch-jupyter-builder) [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch) ______________________________________________________________________ This provides a [build hook](https://hatch.pypa.io/latest/config/build/#build-hooks) plugin for [Hatch](https://github.com/pypa/hatch) that adds a build step for use with Jupyter packages. **Table of Contents** - [Documentation](#documentation) - [Installation](#installation) - [License](#license) - [Usage and Configuration](#usage_and_configuration) - [Local Development](#local_development) ## Documentation The full documentation is available on [Read The Docs](https://hatch-jupyter-builder.readthedocs.io/en/latest/). ## Installation ```console pip install hatch-jupyter-builder ``` ## Local Development To test this package locally with another package, use the following: ```toml [tool.hatch.build.hooks.jupyter-builder] dependencies = ["hatch-jupyter-builder@file://"] ``` ## Skipping the Build You can skip the build by setting the `SKIP_JUPYTER_BUILDER` environment variable. ## Migration This library can be used to migrate from a `setuptools` based package to use `hatch_jupyter_builder`. It will attempt to migrate `jupyter-packaging` config as well, if present. To migrate, run the following: ```bash python -m hatch_jupyter_builder.migrate . ``` The migration script will do most of the migration automatically, but will prompt you for anything it cannot do itself. To compare dist files with a reference checkout, run the following: ```bash python -m hatch_jupyter_builder.compare_migration sdist ``` Use `wheel` to compare wheel file contents. See the [documentation for more information on migration](https://hatch-jupyter-builder.readthedocs.io/en/latest/source/how_to_guides/index.html) for more details. ## License `hatch-jupyter-builder` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.