Metadata-Version: 2.4
Name: lerna
Version: 1.1.0
Summary: lerna is a collection of plugins and extensions for hydra
Project-URL: Repository, https://github.com/nbprint/lerna
Project-URL: Homepage, https://github.com/nbprint/lerna
Author-email: the lerna authors <t.paine154@gmail.com>
License: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.9
Requires-Dist: hydra-core
Requires-Dist: importlib-metadata; python_version < '3.10'
Provides-Extra: develop
Requires-Dist: build; extra == 'develop'
Requires-Dist: bump-my-version; extra == 'develop'
Requires-Dist: check-manifest; extra == 'develop'
Requires-Dist: codespell<2.5,>=2.4; extra == 'develop'
Requires-Dist: hatchling; extra == 'develop'
Requires-Dist: mdformat-tables>=1; extra == 'develop'
Requires-Dist: mdformat<0.8,>=0.7.22; extra == 'develop'
Requires-Dist: pytest; extra == 'develop'
Requires-Dist: pytest-cov; extra == 'develop'
Requires-Dist: ruff; extra == 'develop'
Requires-Dist: twine; extra == 'develop'
Requires-Dist: uv; extra == 'develop'
Requires-Dist: wheel; extra == 'develop'
Description-Content-Type: text/markdown

# lerna

`lerna` is a collection of plugins and extensions for [hydra](https://hydra.cc)

[![Build Status](https://github.com/nbprint/lerna/actions/workflows/build.yaml/badge.svg?branch=main&event=push)](https://github.com/nbprint/lerna/actions/workflows/build.yaml)
[![codecov](https://codecov.io/gh/nbprint/lerna/branch/main/graph/badge.svg)](https://codecov.io/gh/nbprint/lerna)
[![License](https://img.shields.io/github/license/nbprint/lerna)](https://github.com/nbprint/lerna)
[![PyPI](https://img.shields.io/pypi/v/lerna.svg)](https://pypi.python.org/pypi/lerna)

## Overview

`lerna` extends `hydra` with added functionality.
Due to the long release intervals of `hydra`, some of this functionality may move to `hydra`, or remain in `lerna` indefinitely.

### SearchPath Plugins via Entrypoints

This is a standalone implementation of [this open Pull Request](https://github.com/facebookresearch/hydra/pull/3052)

```toml
[project.entry-points."hydra.lernaplugins"]
fake-package = "fake_package.plugin"
```

This will check `fake_package.plugin` for `hydra` search path plugins, without the need to deal with `hydra`'s `hydra_plugins` installation.

> [!NOTE]
> This library was generated using [copier](https://copier.readthedocs.io/en/stable/) from the [Base Python Project Template repository](https://github.com/python-project-templates/base).
