Metadata-Version: 2.4
Name: django-postgres-cache
Version: 0.1.0
Summary: Improved Django Postgres Cache
Project-URL: Homepage, https://github.com/goauthentik/authentik/tree/main/packages/django-postgres-cache
Project-URL: Documentation, https://github.com/goauthentik/authentik/tree/main/packages/django-postgres-cache
Project-URL: Repository, https://github.com/goauthentik/authentik/tree/main/packages/django-postgres-cache
Author-email: "Authentik Security Inc." <hello@goauthentik.io>
License-Expression: MIT
Keywords: cache,django,postgres
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Framework :: Django :: 5.1
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <3.14,>=3.9
Requires-Dist: django-postgres-extra<2.1,>=2.0
Requires-Dist: django<6.0,>=4.2
Description-Content-Type: text/markdown

# django-postgres-cache

### Use in migrations

Migrations that use the cache with this installed need to depend on the migration to create the cache entry table:

```python
    dependencies = [
        # ...other requirements
        ("django_postgres_cache", "0001_initial"),
    ]
```
