Metadata-Version: 2.0
Name: django-flexible-reports
Version: 0.2.3
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-Content-Type: UNKNOWN
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
Requires-Dist: Django (>=1.10)
Requires-Dist: bleach (>=2.1.1)
Requires-Dist: django-dsl (>=0.1.9)
Requires-Dist: django-tables2 (==1.10.0)
Requires-Dist: lxml (>=3.8.0)
Requires-Dist: psycopg2 (>=2.7.1)
Requires-Dist: pypandoc (>=1.4)
Requires-Dist: tablib (>=0.11.5)

=============================
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://coveralls.io/repos/github/mpasternak/django-flexible-reports/badge.svg?branch=master
   :target: https://coveralls.io/github/mpasternak/django-flexible-reports?branch=master

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.


