summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: feb40e8f972fecd730515a9d2a0e17277dd31e32 (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.2"
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://adnoto.net/"
Issues = "https://adnoto.net/"

[project.entry-points.hatch]
django-collectstatic = "hatch_django_collectstatic.hooks"