[dep] switch from html5 to html5lib

This commit is contained in:
Nemo 2021-12-30 17:18:03 +05:30
parent c614de7efc
commit be985dd40b
1 changed files with 3 additions and 3 deletions

View File

@ -36,17 +36,17 @@ package_dir =
=src =src
# Require a min/specific Python version (comma-separated conditions) # Require a min/specific Python version (comma-separated conditions)
python_requires = >=3.6 python_requires = >=3.7
# PyPDF3: Read and write PDF files # PyPDF3: Read and write PDF files
# Markdown: Render input markdown file to HTML # Markdown: Render input markdown file to HTML
# html5: Parse HTML file to generate bookmarks # html5lib: Parse HTML file to generate bookmarks
# validators: Validate URL for fetching external PDF # validators: Validate URL for fetching external PDF
install_requires = install_requires =
importlib-metadata; python_version<"3.8" importlib-metadata; python_version<"3.8"
PyPDF3>=1.0.4 PyPDF3>=1.0.4
Markdown>=3.3.4 Markdown>=3.3.4
html5>=0.0.9 html5lib>=1.1
validators>=0.18.1 validators>=0.18.1
[options.packages.find] [options.packages.find]