summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorCharles Roelli <charles@adnoto.net>2026-02-05 16:10:03 +0100
committerCharles Roelli <charles@adnoto.net>2026-02-05 16:10:03 +0100
commit4c12b29ef228c2cf5d5fd0b5964060935907d987 (patch)
treeb2e55722e4f2e9b87ce03a8d4b7a8a2a13c8ff07 /pyproject.toml
Version 0.0.2
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml33
1 files changed, 33 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..feb40e8
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,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"