Metadata-Version: 1.1
Name: django-flexible-reports
Version: 0.1.7
Summary: A framework for report generation in Django
Home-page: https://github.com/mpasternak/django-flexible-reports
Author: Michał Pasternak
Author-email: michal.dtz@gmail.com
License: MIT
Description: =============================
        Django Flexible Reports
        =============================
        
        .. image:: https://badge.fury.io/py/django-flexible-reports.svg
            :target: https://badge.fury.io/py/django-flexible-reports
        
        .. image:: https://travis-ci.org/mpasternak/django-flexible-reports.svg?branch=master
            :target: https://travis-ci.org/mpasternak/django-flexible-reports
        
        .. image:: https://codecov.io/gh/mpasternak/django-flexible-reports/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/mpasternak/django-flexible-reports
        
        A framework for report generation in Django
        
        Documentation
        -------------
        
        The full documentation is at https://django-flexible-reports.readthedocs.io.
        
        Quickstart
        ----------
        
        Install Django Flexible Reports::
        
            pip install django-flexible-reports
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'flexible_reports.apps.FlexibleReportsConfig',
                ...
            )
        
        Add Django Flexible Reports's URL patterns:
        
        .. code-block:: python
        
            from flexible_reports import urls as flexible_reports_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(flexible_reports_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 (2017-07-20)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-flexible-reports
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
