Do not make django-taggit-helper a hard requirement

This commit is contained in:
Iacopo Spalletti 2016-09-19 15:02:39 +02:00
parent cd92451e78
commit 080de32aed
No known key found for this signature in database
GPG key ID: BDCBC2EB289F60C6
2 changed files with 6 additions and 1 deletions

View file

@ -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
********************* *********************

View file

@ -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,