Metadata-Version: 2.0
Name: filters-django
Version: 1.0.3
Summary: Adds filters for Django-specific features.
Home-page: https://filters.readthedocs.io/
Author: Phoenix Zerin
Author-email: phoenix.zerin@eflglobal.com
License: MIT
Keywords: data validation,django
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Filters
Requires-Dist: Django
Requires-Dist: filters (>=1.2.2)
Requires-Dist: six

.. image:: https://travis-ci.org/eflglobal/filters-django.svg?branch=master
   :target: https://travis-ci.org/eflglobal/filters-django
.. image:: https://readthedocs.org/projects/filters/badge/?version=latest
   :target: http://filters.readthedocs.io/

==============
Django Filters
==============
Adds filters for for Django-specific features, including:

- Search for a DB model instance matching the incoming value.

--------------------
Minimum Requirements
--------------------
These filters *should* work with any version of Django, but they have only been
tested against the following versions: 1.11.

If you encounter any issues, please report them on our `Bug Tracker`_, and be
sure to indicate which version of Django you are using.

------------
Installation
------------
This package is an extension for the `Filters library`, so you can install it
as an extra to ``filters``:

.. code:: bash

   pip install filters[django]


If desired, you can install this package separately.  This allows you to control
the package version separately from ``filters``.

.. code:: bash

   pip install filters-django


.. _Bug Tracker: https://github.com/eflglobal/filters-django/issues
.. _Filters library: https://pypi.python.org/pypi/filters


