From 54ac622e2bbaae845365e0081cc92d67f90753c3 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Sun, 17 Sep 2017 15:48:17 +0200 Subject: [PATCH] MAINT: Fix dependencies, versions see https://github.com/textile/python-textile/commit/8ecebbb817ff5eac3c792cca7c240b7b65238664 --- requirements.txt | 3 ++- setup.py | 9 +++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index d8cae33b..a477d4b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ html5lib>=1.0b10 -Pillow==3.0.0 \ No newline at end of file +Pillow==3.0.0 +regex diff --git a/setup.py b/setup.py index c12d3e00..e2f49baf 100644 --- a/setup.py +++ b/setup.py @@ -55,10 +55,15 @@ def get_version(): 'Programming Language :: Python :: 3.6', ], keywords='textile,text,html markup', - install_requires=['six',], + install_requires=[ + 'six', + 'html5lib>=0.999999999', + ], extras_require={ ':python_version=="2.6"': ['ordereddict>=1.1'], - 'develop': ['regex', 'pytest', 'pytest-cov'], + 'develop': ['pytest', 'pytest-cov'], + 'imagesize': ['Pillow>=3.0.0'], + 'regex': ['regex'], }, entry_points={'console_scripts': ['pytextile=textile.__main__:main']}, setup_requires=['pytest-runner'],