blob: f940215d56780bd9e2a741c35881cc5366060109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
dependencies = [
"django", "hatchling"
]
name = "hatch-django-collectstatic"
version = "0.0.4"
authors = [
{ name="Charles Roelli", email="charles@adnoto.net" },
]
description = "Build, collect and distribute django static files"
keywords = ["django", "collectstatic", "hatch", "hatchling"]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Build Tools",
"Framework :: Hatch",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://codeberg.org/charlesroelli/hatch-django-collectstatic"
Issues = "https://codeberg.org/charlesroelli/hatch-django-collectstatic/issues"
[project.entry-points.hatch]
django-collectstatic = "hatch_django_collectstatic.hooks"
|