next version

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-02-24 18:36:08 -05:00
parent b807435536
commit f371d30b47
3 changed files with 25 additions and 3 deletions
+3
View File
@@ -9,6 +9,9 @@ name = "pypi"
requests = "*"
pyquery = "*"
"html2text" = "*"
fake-useragent = "*"
parse = "*"
[dev-packages]
Generated
+20 -1
View File
@@ -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",
+2 -2
View File
@@ -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 :)