From b59e8df4bf48db328091504b49334f4b6600f8b1 Mon Sep 17 00:00:00 2001 From: colm Date: Thu, 4 Jul 2019 18:06:43 +0100 Subject: [PATCH] adding python-dateutil to the requirements inside setup.py to enable pip install -e . when installing etherdump --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3397661..a9c558f 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,6 @@ setup( description='Etherdump an etherpad publishing & archiving system', # long_description=open('README.md').read(), install_requires=[ - "html5lib", "jinja2" + "html5lib", "jinja2", "python-dateutil" ] )