Metadata-Version: 2.1
Name: django-vrsns
Version: 0.3.0
Summary: Provide an Django view that lists installed package versions
Author: Birger Schacht
Author-email: birger@rantanplan.org
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

Django versions
===============

Provides an endpoint that lists versions of installed packages. The endpoint is
only activated if `DEBUG` is set to `true`.

# Usage

Add the package to your installed apps:
```Python
INSTALLED_APPS.append('django_vrsns')
```

Add the shipped ulrpatterns to your urlpatterns:
```Python
from django_vrsns.urls import urlpatterns as dvurlpatterns
urlpatterns = dvurlpatterns + urlpatterns
```

