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 committed by Luke Murphy
parent e82ac2db33
commit b59e8df4bf
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

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