Skip to content

Commit f8ff04d

Browse files
committed
feat: Add a proper apps.py file with a proper verbose_name
1 parent 3a47cf3 commit f8ff04d

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

example/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
package = false
1313

1414
[tool.uv.sources]
15-
django-generic-notifications = { path = "../" }
15+
django-generic-notifications = { path = "../", editable = true }
1616

1717
[dependency-groups]
1818
dev = [

example/uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generic_notifications/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class GenericNotificationsConfig(AppConfig):
5+
name = "generic_notifications"
6+
verbose_name = "Generic Notifications"

0 commit comments

Comments
 (0)