Metadata-Version: 2.1
Name: django-whiteless
Version: 0.1.0
Summary: Django template utilities for handling whitespaces
Home-page: https://github.com/denizdogan/django-whiteless
Author: Deniz Dogan
Author-email: denizdogan@noreply.users.github.com
License: Apache-2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: Django (>=1.11)
Provides-Extra: dev
Requires-Dist: black (==19.3b0) ; extra == 'dev'
Requires-Dist: flake8 (==3.7.7) ; extra == 'dev'
Requires-Dist: flake8-isort (==2.7.0) ; extra == 'dev'
Requires-Dist: isort (==4.3.16) ; extra == 'dev'
Requires-Dist: markdown-include (==0.5.1) ; extra == 'dev'
Requires-Dist: mkdocs (==1.0.4) ; extra == 'dev'
Requires-Dist: mkdocs-minify-plugin (==0.1.0) ; extra == 'dev'
Requires-Dist: pipdeptree (==0.13.2) ; extra == 'dev'
Requires-Dist: pre-commit (==1.15.1) ; extra == 'dev'
Requires-Dist: pygments (==2.3.1) ; extra == 'dev'
Requires-Dist: twine (==1.13.0) ; extra == 'dev'
Requires-Dist: wheel (==0.33.1) ; extra == 'dev'

# django-whiteless

Django template tags which deal with pesky whitespaces!

[![CircleCI](https://circleci.com/gh/denizdogan/django-whiteless/tree/master.svg?style=svg)](https://circleci.com/gh/denizdogan/django-whiteless/tree/master)

## Installation

Install the latest version from PyPI:

```bash
$ pip install django-whiteless
```

Add `"whiteless"` to `INSTALLED_APPS`:

```python
INSTALLED_APPS = (
    # ...
    "whiteless",
)
```

## Documentation

- [Read The Docs](https://django-whiteless.readthedocs.io/en/latest/)


