Require beautifulsoup4 instead of bs4

bs4 is a dummy package managed by the developer of Beautiful Soup to prevent
name squatting. The official name of PyPI’s Beautiful Soup Python package is
beautifulsoup4. The bs4 package ensures that if you type pip install bs4 by
mistake you will end up with Beautiful Soup.

However, for requirements, it's cleaner to use the proper name.
For downstream packaging in Fedora, this avoids the need of packaging
the dummy package.
This commit is contained in:
Miro Hrončok 2020-02-06 10:05:13 +01:00
parent e37dab8a4b
commit ff5ebbae69
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
# required:
bs4
beautifulsoup4
requests >= 2.4
pyxdg
dnspython

View file

@ -495,7 +495,7 @@ args = dict(
install_requires = [
'requests >= 2.4',
'dnspython',
'bs4',
'beautifulsoup4',
'pyxdg',
'future',
],