Change 'bs4' dependency to 'beautifulsoup4'

'bs4' is just a dummy package to make it easier to install.  'beautifulsoup4' is the real package name.  Downstream packagers like Anaconda and Linux distributions will have 'beautifulsoup4' available, but not 'bs4', making it harder to install this package.
This commit is contained in:
Todd
2019-05-20 12:16:14 -04:00
committed by GitHub
parent 2970bf23f7
commit 324b84b263
+1 -1
View File
@@ -21,7 +21,7 @@ VERSION = '0.10.0'
# What packages are required for this module to be executed?
REQUIRED = [
'requests', 'pyquery', 'fake-useragent', 'parse', 'bs4', 'w3lib', 'pyppeteer>=0.0.14'
'requests', 'pyquery', 'fake-useragent', 'parse', 'beautifulsoup4', 'w3lib', 'pyppeteer>=0.0.14'
]
# The rest you shouldn't have to touch too much :)