diff --git a/Pipfile b/Pipfile index dfeb300..d92a01b 100644 --- a/Pipfile +++ b/Pipfile @@ -9,6 +9,9 @@ name = "pypi" requests = "*" pyquery = "*" +"html2text" = "*" +fake-useragent = "*" +parse = "*" [dev-packages] diff --git a/Pipfile.lock b/Pipfile.lock index c79cb1a..7b6e657 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "94acbec9dacb3fc6349401e4bb044fabe92671a962f56f908c8d4246354eab93" + "sha256": "7fea86728660b19b58ee32ea324ef582c66acbebce424a21cfc63e51d6a0ed38" }, "host-environment-markers": { "implementation_name": "cpython", @@ -48,6 +48,19 @@ ], "version": "==1.0.3" }, + "fake-useragent": { + "hashes": [ + "sha256:cc9b9ddcebc708b3deac846f5fccb16e37c02ee47435a4ec7132271dd96aec8c" + ], + "version": "==0.1.10" + }, + "html2text": { + "hashes": [ + "sha256:490db40fe5b2cd79c461cf56be4d39eb8ca68191ae41ba3ba79f6cb05b7dd662", + "sha256:627514fb30e7566b37be6900df26c2c78a030cc9e6211bda604d8181233bcdd4" + ], + "version": "==2018.1.9" + }, "idna": { "hashes": [ "sha256:8c7309c718f94b3a625cb648ace320157ad16ff131ae0af362c9f21b80ef6ec4", @@ -88,6 +101,12 @@ ], "version": "==4.1.1" }, + "parse": { + "hashes": [ + "sha256:8048dde3f5ca07ad7ac7350460952d83b63eaacecdac1b37f45fd74870d849d2" + ], + "version": "==1.8.2" + }, "pyquery": { "hashes": [ "sha256:07987c2ed2aed5cba29ff18af95e56e9eb04a2249f42ce47bddfb37f487229a3", diff --git a/setup.py b/setup.py index e5d709b..4c82270 100644 --- a/setup.py +++ b/setup.py @@ -17,11 +17,11 @@ DESCRIPTION = 'HTML Parsing for Humans.' URL = 'https://github.com/requests/requests' EMAIL = 'me@kennethreitz.org' AUTHOR = 'Kenneth Reitz' -VERSION = '0.0.1' +VERSION = '0.1.0' # What packages are required for this module to be executed? REQUIRED = [ - 'requests', 'pyquery', 'html2text' + 'requests', 'pyquery', 'html2text', 'fake-useragent', 'parse' ] # The rest you shouldn't have to touch too much :)