blob: 44d074b1a93c43824831cecc76837c10c125b777 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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 = "ppr.project.settings"
[tool.hatch.build.targets.wheel.shared-data]
"static" = "share/static"
```
|