Metadata-Version: 1.1
Name: omni-gumshoe
Version: 0.1.1
Summary: Simple django signal for tracking superuser logins.
Home-page: https://github.com/omni-digital/omni-gumshoe
Author: Philip Gardner
Author-email: philip.gardner@omni-digital.co.uk
License: MIT
Description: =============================
        Omni Gumshoe
        =============================
        
        .. image:: https://badge.fury.io/py/omni_gumshoe.svg
            :target: https://badge.fury.io/py/omni_gumshoe
        
        .. image:: https://travis-ci.org/omni-digital/omni-gumshoe.svg?branch=master
            :target: https://travis-ci.org/omni-digital/omni-gumshoe
        
        .. image:: https://codecov.io/gh/omni-digital/omni-gumshoe/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/omni-digital/omni-gumshoe
        
        Simple logging for superuser logins.
        
        Quickstart
        ----------
        
        Install Omni Gumshoe::
        
            pip install omni_gumshoe
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'omni_gumshoe',
                ...
            )
        
        Features
        --------
        
        * Adds a `LogEvent` every time a super user logs in.
        * Adds a `LogEvent` every time a staff user logs in.
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        Recommended With
        ----------------
        We would recommend using Logentry Admin, Omni Gumshoe adds slightly more visibility to Logentry Admin.
        
        Install django-logentry-admin::
        
            pip install django-logentry-admin
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'django-logentry-admin',
                ...
            )
        
        Credits
        -------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.1.0 (2017-04-04)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: omni_gumshoe,admin,logging
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
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
Classifier: Programming Language :: Python :: 3.6
