Metadata-Version: 1.1
Name: django-accredible
Version: 0.5.1
Summary: Integrate Accredible certification in a Django App
Home-page: https://github.com/tomasgarzon/django-accredible
Author: Tomas Garzon
Author-email: tomasgarzonhervas@gmail.com
License: MIT
Description: =============================
        django-accredible
        =============================
        
        .. image:: https://badge.fury.io/py/django-accredible.svg
            :target: https://badge.fury.io/py/django-accredible
        
        .. image:: https://requires.io/github/exolever/django-accredible/requirements.svg?branch=master
             :target: https://requires.io/github/exolever/django-accredible/requirements/?branch=master
             :alt: Requirements Status
        
        .. image:: https://travis-ci.org/exolever/django-accredible.svg?branch=master
            :target: https://travis-ci.org/exolever/django-accredible
        
        .. image:: https://codecov.io/gh/exolever/django-accredible/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/exolever/django-accredible
        
        .. image:: https://sonarcloud.io/api/project_badges/measure?project=exolever_django-accredible&metric=alert_status
           :target: https://sonarcloud.io/dashboard?id=exolever_django-accredible
        
        Integrate Accredible certification in a Django App
        
        Documentation
        -------------
        
        The full documentation is at https://django-accredible.readthedocs.io.
        
        Quickstart
        ----------
        
        Install django-accredible::
        
            pip install django-accredible
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'certification.apps.CertificationConfig',
                ...
            )
        
        Add django-accredible's URL patterns:
        
        .. code-block:: python
        
            from certification import urls as certification_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(certification_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 (2019-02-06)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-accredible
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.0
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
