adding python-dateutil to the requirements inside setup.py to enable pip install -e . when installing etherdump

This commit is contained in:
colm 2019-07-04 18:06:43 +01:00
parent f9bb4444e2
commit 95a021d405

View File

@ -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"
]
)