Metadata-Version: 2.1
Name: django-whiteless
Version: 0.1.2
Summary: Django template tags for dealing with pesky whitespaces
Home-page: https://github.com/denizdogan/django-whiteless
License: MIT
Keywords: django,whitespace,template,tag
Author: Deniz Dogan
Author-email: denizdogan@users.noreply.github.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Provides-Extra: docs
Requires-Dist: Django (>=1.11,<2.0); python_version >= "2.7" and python_version < "2.8"
Requires-Dist: Django (>=2.0,<3.0); python_version >= "3.5" and python_version < "4.0"
Project-URL: Documentation, https://django-whiteless.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/denizdogan/django-whiteless.git
Description-Content-Type: text/markdown

# 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/)

