Make the markdown package requirement explicit.

Similar changes had been done on this
fix. (https://github.com/getpelican/pelican/issues/1243)
When using markdown documents currently the error messages doesn't say
the actual error, which forces the developer to debug the pelican code
to spot the bug. This fix will explicitly enforce the required dependency.
This commit is contained in:
Haridas N 2018-09-18 23:01:33 +05:30
commit 539e996489
2 changed files with 2 additions and 5 deletions

View file

@ -7,7 +7,7 @@ from os.path import join, relpath
from setuptools import setup
requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.7', 'pygments', 'docutils',
'pytz >= 0a', 'blinker', 'unidecode', 'six >= 1.4',
'pytz >= 0a', 'blinker', 'unidecode', 'six >= 1.4', 'markdown',
'python-dateutil']
entry_points = {