From 4c12b29ef228c2cf5d5fd0b5964060935907d987 Mon Sep 17 00:00:00 2001 From: Charles Roelli Date: Thu, 5 Feb 2026 16:10:03 +0100 Subject: Version 0.0.2 --- src/hatch_django_collectstatic/hooks.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/hatch_django_collectstatic/hooks.py (limited to 'src/hatch_django_collectstatic/hooks.py') diff --git a/src/hatch_django_collectstatic/hooks.py b/src/hatch_django_collectstatic/hooks.py new file mode 100644 index 0000000..e36006e --- /dev/null +++ b/src/hatch_django_collectstatic/hooks.py @@ -0,0 +1,8 @@ +from hatchling.plugin import hookimpl + +from .plugin import DjangoCollectstaticBuildHook + + +@hookimpl +def hatch_register_build_hook(): + return DjangoCollectstaticBuildHook -- cgit v1.3