summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--pyproject.toml6
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 44d074b..317ca1f 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ requires = ["hatchling >= 1.26", "hatch-django-collectstatic"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel.hooks.django-collectstatic]
-settings = "ppr.project.settings"
+settings = "my_django_package.project.settings"
[tool.hatch.build.targets.wheel.shared-data]
"static" = "share/static"
diff --git a/pyproject.toml b/pyproject.toml
index feb40e8..8106bd3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,7 +7,7 @@ dependencies = [
"django", "hatchling"
]
name = "hatch-django-collectstatic"
-version = "0.0.2"
+version = "0.0.3"
authors = [
{ name="Charles Roelli", email="charles@adnoto.net" },
]
@@ -26,8 +26,8 @@ license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
-Homepage = "https://adnoto.net/"
-Issues = "https://adnoto.net/"
+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"