File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -335,8 +335,8 @@ Can I mix and match ``django-filter`` and ``django-rest-framework-filters``?
335335Yes you can. `` django- rest- framework- filters`` is simply an extension of `` django- filter `` . Note
336336that `` RelatedFilter`` and other `` django- rest- framework- filters`` features are designed to work
337337with `` rest_framework_filters.FilterSet`` and will not function on a `` django_filters.FilterSet`` .
338- However, the target `` RelatedFilter.filterset`` may point to a `` FilterSet`` from either package
339- and `` FilterSet`` s from either package are compatible with the other' s DRF backend.
338+ However, the target `` RelatedFilter.filterset`` may point to a `` FilterSet`` from either package,
339+ and both `` FilterSet`` implementations are compatible with the other' s DRF backend.
340340
341341.. code- block:: python
342342
Original file line number Diff line number Diff line change 55import os
66
77
8+ with open ('README.rst' ) as f :
9+ README = f .read ()
10+
11+
812def get_packages (package ):
913 """
1014 Return root package and all sub-packages.
@@ -35,6 +39,7 @@ def get_package_data(package):
3539 version = '0.10.1' ,
3640 url = 'http://github.com/philipn/django-rest-framework-filters' ,
3741 license = 'MIT' ,
42+ long_description = README ,
3843 description = 'Better filtering for Django REST Framework' ,
3944 author = 'Philip Neustrom' ,
4045 author_email = 'philipn@gmail.com' ,
You can’t perform that action at this time.
0 commit comments