Metadata-Version: 1.1
Name: django-migration-checker
Version: 0.3.0
Summary: Static migration conflict checker for Django
Home-page: https://github.com/rev112/django-migration-checker
Author: Anton Ovchinnikov
Author-email: anton.ovchi2nikov@gmail.com
License: MIT license
Description: ===============================
        django-migration-checker
        ===============================
        
        
        .. image:: https://img.shields.io/pypi/v/django_migration_checker.svg
                :target: https://pypi.python.org/pypi/django_migration_checker
        
        .. image:: https://img.shields.io/travis/rev112/django-migration-checker.svg
                :target: https://travis-ci.org/rev112/django-migration-checker
        
        
        The package allows to detect migration conflicts in Django application via static code analysis. In other words, it doesn't run or import any of your code, but finds and parses Django migration files.
        
        **Example:**
        
        ::
        
          >>> from django_migration_checker import get_conflicts
          >>> get_conflicts(app_dir='./django-project/apps')
          [('accounts', ['0001_initial', '0002_new_migration'])]
        
        * Free software: MIT license
        
        
        Installation
        ------------
        
        ::
        
          pip install django-migration-checker
        
        Features
        --------
        
        * TODO
        
        Credits
        ---------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
        
        =======
        History
        =======
        
        0.1.0 (2016-09-09)
        ------------------
        
        * First release on PyPI.
        
Keywords: django_migration_checker
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
