Metadata-Version: 2.4
Name: hatch-django-collectstatic
Version: 0.0.3
Summary: Build, collect and distribute django static files
Project-URL: Homepage, https://codeberg.org/charlesroelli/hatch-django-collectstatic
Project-URL: Issues, https://codeberg.org/charlesroelli/hatch-django-collectstatic/issues
Author-email: Charles Roelli <charles@adnoto.net>
License-Expression: MIT
License-File: LICENSE.txt
Keywords: collectstatic,django,hatch,hatchling
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Hatch
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.11
Requires-Dist: django
Requires-Dist: hatchling
Description-Content-Type: text/markdown

# hatch-django-collectstatic

Collect a django project's static files into its binary distribution
archive.

Example usage:

```
[build-system]
requires = ["hatchling >= 1.26", "hatch-django-collectstatic"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel.hooks.django-collectstatic]
settings = "my_django_package.project.settings"

[tool.hatch.build.targets.wheel.shared-data]
"static" = "share/static"
```
