Do not make django-taggit-helper a hard requirement
This commit is contained in:
parent
cd92451e78
commit
080de32aed
2 changed files with 6 additions and 1 deletions
|
@ -39,6 +39,10 @@ If you want to enable haystack support, in addition to the above:
|
||||||
* configure haystack according to `aldryn-search docs <https://github.com/aldryn/aldryn-search#usage>`_
|
* configure haystack according to `aldryn-search docs <https://github.com/aldryn/aldryn-search#usage>`_
|
||||||
and `haystack docs <http://django-haystack.readthedocs.io/en/stable/>`_.
|
and `haystack docs <http://django-haystack.readthedocs.io/en/stable/>`_.
|
||||||
|
|
||||||
|
To enable taggit filtering support in the admin install djangocms-blog with::
|
||||||
|
|
||||||
|
pip install djangocms-blog[taggit]
|
||||||
|
|
||||||
*********************
|
*********************
|
||||||
Minimal configuration
|
Minimal configuration
|
||||||
*********************
|
*********************
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -42,7 +42,8 @@ setup(
|
||||||
'djangocms-apphook-setup',
|
'djangocms-apphook-setup',
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
'search': ['aldryn-search']
|
'search': ['aldryn-search'],
|
||||||
|
'taggit-helpers': ['django-taggit-helpers']
|
||||||
},
|
},
|
||||||
license='BSD',
|
license='BSD',
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|
Loading…
Reference in a new issue