diff --git a/README.md b/README.md index 9fe4f33..3bdcacd 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This program just prints the sources of the given Wikipedia article to standard ## Installation ``` shell -pipx install print-wp-sources +pipx install print-wp-sources --include-deps ``` ## Usage diff --git a/pyproject.toml b/pyproject.toml index ba25ff8..3142f4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "print-wp-sources" -version = "0.1" +version = "0.2" authors = [ { name="Jeffrey Serio", email="hyperreal@fedoraproject.org" }, ] @@ -12,6 +12,7 @@ classifiers = [ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: OS Independent", ] +dependencies = ["beautifulsoup4>=4.12.3"] [project.scripts] print-wp-sources = "print_wp_sources:main"