Metadata-Version: 2.1
Name: version-control
Version: 0.0.2
Summary: Django Version Control
Home-page: https://github.com/kuter/django-version-control
Author: kuter
Author-email: contact@devktr.pl
License: MIT
Description: .. image:: https://travis-ci.org/kuter/django-version-control.svg?branch=master
            :target: https://travis-ci.org/kuter/django-version-control
        
        .. image:: https://coveralls.io/repos/github/kuter/django-version-control/badge.svg?branch=master
            :target: https://coveralls.io/github/kuter/django-version-control?branch=master
        
        .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
            :target: https://github.com/python/black
        
        
        ======================
        Django Version Control
        ======================
        Third-party app created with https://github.com/kuter/django-plugin-template-cookiecutter
        
        Quick start
        -----------
        1. Add "version_control" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                "version_control",
            ]
        2. Enable "version_control" in your settings module as follows::
        
        
            MIDDLEWARE = [
                "version_control.middleware.VersionControlMiddleware"
            ]
        
        Old-style middleware::
        
            MIDDLEWARE_CLASSES = [
                "version_control.middleware.VersionControlMiddleware"
            ]
        
        3. Install third-party modules
        
        For projects running under git source control::
        
            $ pip install GitPython
        
        For mercurial projects::
        
            $ pip install hglib  # python 3.x
            $ pip install python-hglib  # python 2.7.x
        
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.6
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/x-rst
