summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
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"