Metadata-Version: 1.2
Name: django-queryable-properties
Version: 1.0.2
Summary: Write Django model properties that can be used in database queries.
Home-page: https://github.com/W1ldPo1nter/django-queryable-properties
Author: Marcus Klöpfel
Author-email: marcus.kloepfel@gmail.com
Maintainer: Marcus Klöpfel
Maintainer-email: marcus.kloepfel@gmail.com
License: BSD
Description: ===========================
        django-queryable-properties
        ===========================
        
        .. image:: https://travis-ci.com/W1ldPo1nter/django-queryable-properties.svg?branch=master
           :target: https://travis-ci.com/W1ldPo1nter/django-queryable-properties
        .. image:: https://codecov.io/gh/W1ldPo1nter/django-queryable-properties/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/W1ldPo1nter/django-queryable-properties
        .. image:: https://readthedocs.org/projects/django-queryable-properties/badge/?version=latest
           :target: https://django-queryable-properties.readthedocs.io/en/latest/?badge=latest
        .. image:: https://img.shields.io/pypi/v/django-queryable-properties.svg
           :target: https://pypi.org/project/django-queryable-properties
        
        *django-queryable-properties* is a `Django`_ extension that allows to implement model properties which can be be used
        in database queries performed via Django's ORM.
        
        .. _Django: https://www.djangoproject.com/
        
        Further information, including supported Python and Django versions as well as installation instructions, can be found
        in the `documentation hosted by readthedocs`_.
        
        .. _documentation hosted by readthedocs: https://django-queryable-properties.readthedocs.io/
        
        Contributing and getting help
        =============================
        
        The `GitHub repository`_ is the central place to report bugs and get help using the `GitHub issues`_ as well as to
        contribute to the project via pull requests while following the `guide on contributing`_.
        
        .. _GitHub repository: https://github.com/W1ldPo1nter/django-queryable-properties
        .. _GitHub issues: https://github.com/W1ldPo1nter/django-queryable-properties/issues
        .. _guide on contributing: https://github.com/W1ldPo1nter/django-queryable-properties/blob/master/CONTRIBUTING.rst
        
        
        Changelog
        =========
        
        master (unreleased)
        -------------------
        
        1.0.2 (2019-06-02)
        ------------------
        
        - The ``lookup`` parameter of custom filter implementations of queryable properties will now receive the combined
          lookup string if multiple lookups/transforms are used at once instead of just the first lookup/transform
        - Fixed the construction of GROUP BY clauses when annotating queryable properties based on aggregates
        - Fixed the construction of HAVING clauses when annotating queryable properties based on aggregates in Django versions
          below 1.9
        - Fixed the ability to pickle queries and querysets with queryable properties functionality in Django versions below
          1.6
        
        1.0.1 (2019-05-11)
        ------------------
        
        - Added support for Django 2.2
        
        1.0.0 (2018-12-31)
        ------------------
        
        - Initial release
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.4
Classifier: Framework :: Django :: 1.5
Classifier: Framework :: Django :: 1.6
Classifier: Framework :: Django :: 1.7
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
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 :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet
