Metadata-Version: 2.4
Name: django-flexible-reports
Version: 0.3.2
Summary: A framework for report generation in Django
Author-email: Michał Pasternak <michal.dtz@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/mpasternak/django-flexible-reports
Keywords: django-flexible-reports
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Framework :: Django :: 5.1
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: Django>=4.2
Requires-Dist: django-dsl>=0.1.12
Requires-Dist: djangoql-iplweb>=0.20
Requires-Dist: django-tables2>=1.16.0
Requires-Dist: tablib>=0.11.5
Requires-Dist: lxml>=3.8.0
Requires-Dist: pypandoc>=1.4
Requires-Dist: bleach>=2.1.1
Provides-Extra: dev
Requires-Dist: bump-my-version; extra == "dev"
Provides-Extra: test
Requires-Dist: coverage; extra == "test"
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-django; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: html5lib<=0.9999999; extra == "test"
Requires-Dist: beautifulsoup4>=4.11.1; extra == "test"
Requires-Dist: model-bakery; extra == "test"
Requires-Dist: psycopg2-binary; extra == "test"
Dynamic: license-file

# Django Flexible Reports

[![PyPI](https://badge.fury.io/py/django-flexible-reports.svg)](https://badge.fury.io/py/django-flexible-reports)
[![Tests](https://github.com/mpasternak/django-flexible-reports/actions/workflows/tests.yml/badge.svg)](https://github.com/mpasternak/django-flexible-reports/actions)
[![Coverage](https://coveralls.io/repos/github/mpasternak/django-flexible-reports/badge.svg?branch=master)](https://coveralls.io/github/mpasternak/django-flexible-reports?branch=master)

A framework for report generation in Django

## Supported Versions

|              | Python 3.10 | Python 3.11 | Python 3.12 | Python 3.13 |
|--------------|:-----------:|:-----------:|:-----------:|:-----------:|
| Django 4.2   | ✔           | ✔           | ✔           | ✔           |
| Django 5.0   | ✔           | ✔           | ✔           | ✔           |
| Django 5.1   | ✔           | ✔           | ✔           | ✔           |

## 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`:

```python
INSTALLED_APPS = (
    ...
    'flexible_reports.apps.FlexibleReportsConfig',
    ...
)
```

Add Django Flexible Reports's URL patterns:

```python
from flexible_reports import urls as flexible_reports_urls

urlpatterns = [
    ...
    url(r'^', include(flexible_reports_urls)),
    ...
]
```

## Features

* TODO

## Running Tests

```
uv sync --all-extras
uv run pytest
```

## License

MIT
