diff --git a/README.md b/README.md index f44d502..7b36638 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,15 @@ INSTALLED_APPS = [ 3) That's it. Your login page is now enhanced. +# Extras + +If you're feeling brave, you can try the spooky version of the login form: +``` +pip install django_wplogin[spooky] +``` + +(Courtesy of [django-admin-dracula](https://github.com/sjbitcode/django-admin-dracula) 🧛) + # Screenshots diff --git a/pyproject.toml b/pyproject.toml index cd393f5..9f70d98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,3 +26,6 @@ dynamic = ["version", "description"] [project.urls] Funding = "https://www.djangoproject.com/fundraising" + +[project.optional-dependencies] +spooky = ["django-admin-dracula"] diff --git a/src/django_wplogin/__init__.py b/src/django_wplogin/__init__.py index ffa2db9..ec1c0a5 100644 --- a/src/django_wplogin/__init__.py +++ b/src/django_wplogin/__init__.py @@ -2,4 +2,4 @@ Enhance the Django admin login page """ -__version__ = "3.0.4" +__version__ = "3.1.0"