Metadata-Version: 2.4
Name: hatch-django-locales
Version: 0.1.4
Summary: A hatchling build hook to compile django locale files during build time
Author-email: Felix Rindt <felix@ephios.de>
License-Expression: MIT
Requires-Python: >=3.10
Requires-Dist: django
Description-Content-Type: text/markdown


# hatch-django-locales

This package provides a hatchling plugin for Django projects that
automatically compiles locale files when building the package. 

## Usage

In your projects `pyproject.toml`, adjust the following:

```toml
[build-system]
requires = ["hatchling", "django", "hatch-django-locales"]
build-backend = "hatchling.build"

[tool.hatch.build]
hooks = ["django-locales"]
```