Metadata-Version: 1.1
Name: django-surveys
Version: 0.1.1
Summary: A reusable Django app that lets users write feedback for any model
Home-page: https://github.com/founders4schools/django-surveys
Author: Founders4Schools
Author-email: dev@founders4schools.org.uk
License: MIT
Description: ==============
        Django Surveys
        ==============
        
        .. image:: https://badge.fury.io/py/django-surveys.svg
            :target: https://badge.fury.io/py/django-surveys
            :alt: PyPI
        
        .. image:: https://travis-ci.org/founders4schools/django-surveys.svg?branch=master
            :target: https://travis-ci.org/founders4schools/django-surveys
            :alt: Build
        
        .. image:: https://readthedocs.org/projects/django-surveys/badge/?version=latest
            :target: http://django-surveys.readthedocs.io
            :alt: Docs
        
        .. image:: https://landscape.io/github/founders4schools/django-surveys/master/landscape.svg?style=flat
            :target: https://landscape.io/github/founders4schools/django-surveys/master
            :alt: Code Health
        
        A reusable Django app that lets users write feedback for any model
        
        Documentation
        -------------
        
        The full documentation is at https://django-surveys.readthedocs.io.
        
        Quickstart
        ----------
        
        Install Django Surveys::
        
            pip install django-surveys
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'surveys.apps.SurveysConfig',
                ...
            )
        
        Add Django Surveys's URL patterns:
        
        .. code-block:: python
        
            from surveys import urls as surveys_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(surveys_urls)),
                ...
            ]
        
        Features
        --------
        
        * TODO
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        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 (2016-12-21)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-surveys
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
