From 80115274e19d780d7296201bf9e0ab72a27fea02 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 26 Feb 2018 08:23:13 -0500 Subject: [PATCH] remove 'html2text', Signed-off-by: Kenneth Reitz --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 3407445..11dbf45 100644 --- a/setup.py +++ b/setup.py @@ -17,11 +17,11 @@ DESCRIPTION = 'HTML Parsing for Humans.' URL = 'https://github.com/kennethreitz/requests-html' EMAIL = 'me@kennethreitz.org' AUTHOR = 'Kenneth Reitz' -VERSION = '0.1.1' +VERSION = '0.2.0' # What packages are required for this module to be executed? REQUIRED = [ - 'requests', 'pyquery', 'html2text', 'fake-useragent', 'parse', 'bs4' + 'requests', 'pyquery', 'fake-useragent', 'parse', 'bs4' ] # The rest you shouldn't have to touch too much :)