Metadata-Version: 1.1
Name: django-automationcommon
Version: 1.2
Summary: Common functionality across different Django projects of the UofC UIS Automation team
Home-page: https://git.csx.cam.ac.uk/i/ucs/automation/django-automationcommon
Author: Automation team, University Information Services, University of Cambridge
Author-email: automation@uis.cam.ac.uk
License: MIT
Description: =================
        Automation Common
        =================
        
        Automation Common is a simple Django app that provides common functionality across different Django projects of the UofC UIS Automation team.
        
        Quick start
        -----------
        
        1. Add "automationcommon" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'automationcommon',
            ]
        
        2. Include the automationcommon URLconf in your project urls.py like this::
        
            url(r'', include('automationcommon.urls')),
        
        3. Run `python manage.py migrate` to create the automationcommon models.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
