Metadata-Version: 2.4
Name: django-migration-resolver
Version: 0.1.0
Summary: A Django package to track and resolve migration conflicts automatically.
Author-email: Will Poulson <willpoulson44@gmail.com>
License-Expression: MIT
License-File: LICENCE
Requires-Dist: django>=3.2
Description-Content-Type: text/markdown

# Django Migration Resolver

A Django package to automatically track and resolve migration conflicts between different branches.

## Installation
```sh
pip install django-migration-resolver
```

Add 'django_migration_resolver' to your INSTALLED_APPS

```python
INSTALLED_APPS = [
    ...
    'django_migration_resolver',
    ...
]
```

You must ensure that `django_migration_resolver` is placed before `django.contrib.auth` in the `INSTALLED_APPS` list.

