Metadata-Version: 1.1
Name: django-nimble
Version: 0.0.3
Summary: Nimble Project Management
Home-page: https://github.com/heoga/django-nimble
Author: Karl Odie
Author-email: karlodie@gmail.com
License: BSD
Description: Django-Nimble
        =============
        
        |build-status-image| |coverage-status-image| |pypi-version|
        
        Jack be nimble, jack be quick.
        
        The goal of this project is to provide an open-source tool to facilitate
        the management of agile projects in large organisations.
        
        Installation
        ------------
        
        Run ``pip install django-nimble``
        
        Running tests
        -------------
        
        ``setup.py test``
        
        Configuration
        -------------
        
        Authentication
        ~~~~~~~~~~~~~~
        
        The nimble module requires user-authentication. How this is established
        is not restricted. All that is required by nimble is that the following
        named views are provided: - login - logout
        
        Installed Apps
        --------------
        
        Add the following to your INSTALLED\_APPS setting:
        
        ::
        
            INSTALLED_APPS = (
                ...
                'nimble.apps.NimbleConfig',
                'rest_framework',
                'bootstrap3',
            )
        
        Since nimble overrides the view of rest\_framework API it must appear
        above the rest\_framework in the list.
        
        .. |build-status-image| image:: https://secure.travis-ci.org/heoga/django-nimble.svg?branch=master
           :target: http://travis-ci.org/heoga/django-nimble?branch=master
        .. |coverage-status-image| image:: https://codecov.io/gh/heoga/django-nimble/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/heoga/django-nimble?branch=master
        .. |pypi-version| image:: https://img.shields.io/pypi/v/django-nimble.svg
           :target: https://pypi.python.org/pypi/django-nimble
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
