Update to 0.2

This commit is contained in:
Jeffrey Serio 2024-12-04 12:43:04 -06:00
parent 5692f69775
commit a7f0b75a75
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ This program just prints the sources of the given Wikipedia article to standard
## Installation ## Installation
``` shell ``` shell
pipx install print-wp-sources pipx install print-wp-sources --include-deps
``` ```
## Usage ## Usage

View File

@ -1,6 +1,6 @@
[project] [project]
name = "print-wp-sources" name = "print-wp-sources"
version = "0.1" version = "0.2"
authors = [ authors = [
{ name="Jeffrey Serio", email="hyperreal@fedoraproject.org" }, { name="Jeffrey Serio", email="hyperreal@fedoraproject.org" },
] ]
@ -12,6 +12,7 @@ classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent", "Operating System :: OS Independent",
] ]
dependencies = ["beautifulsoup4>=4.12.3"]
[project.scripts] [project.scripts]
print-wp-sources = "print_wp_sources:main" print-wp-sources = "print_wp_sources:main"