Skip to content

Commit

Permalink
Use the proper beautifulsoup package (#120)
Browse files Browse the repository at this point in the history
From PyPI's description for `bs4`:

> This package ensures that if you type pip install bs4 by mistake you
> will end up with Beautiful Soup.

Using the proper package makes packaging exhale a little simpler.
  • Loading branch information
matz-e authored Nov 18, 2021
1 parent 9c581c9 commit 359fccb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bs4 # BeautifulSoup!
lxml # We need the lxml backend for BeautifulSoup.
sphinx>=1.6.1 # Exhale is a Sphinx extension. 1.6 introduces logging API.
breathe # The directives used for documentation come from the excellent Breathe.
six # Primarily for Unicode string types
beautifulsoup4 # BeautifulSoup!
lxml # We need the lxml backend for BeautifulSoup.
sphinx>=1.6.1 # Exhale is a Sphinx extension. 1.6 introduces logging API.
breathe # The directives used for documentation come from the excellent Breathe.
six # Primarily for Unicode string types

0 comments on commit 359fccb

Please sign in to comment.