add a new dependency PyMuPDF for PNG generation

This commit is contained in:
Sina Atalay 2024-04-28 21:54:48 +03:00
parent ecb611108a
commit c6d3c333dc
1 changed files with 3 additions and 4 deletions

View File

@ -64,6 +64,7 @@ dependencies = [
'ruamel.yaml==0.18.6', # to parse YAML files 'ruamel.yaml==0.18.6', # to parse YAML files
'typer==0.12.3', # to create the command-line interface 'typer==0.12.3', # to create the command-line interface
"markdown==3.6", # to convert Markdown to HTML "markdown==3.6", # to convert Markdown to HTML
"PyMuPDF==1.24.2", # to convert PDF files to images
] ]
classifiers = [ classifiers = [
"Intended Audience :: Science/Research", "Intended Audience :: Science/Research",
@ -104,10 +105,8 @@ docs = [
"mkdocs-material==9.5.17", # to build docs "mkdocs-material==9.5.17", # to build docs
"mkdocstrings-python==1.9.2", # to build reference documentation from docstrings "mkdocstrings-python==1.9.2", # to build reference documentation from docstrings
"pdfCropMargins==2.1.2", # to generate entry figures for the documentation "pdfCropMargins==2.1.2", # to generate entry figures for the documentation
"pillow==10.1.0", # to generate entry figures for the documentation "pillow==10.1.0", # lock the dependency of pdfCropMargins
"PySimpleGUI==4.20.0", # to generate entry figures for the documentation "PySimpleGUI==4.20.0", # lock the dependency of pdfCropMargins
"PyMuPDF==1.23.10", # to generate entry figures for the documentation
"pypdfium2==4.29.0", # to convert entry figure PDF files to images
"mkdocs-macros-plugin==1.0.5", # to be able to have dynamic content in the documentation "mkdocs-macros-plugin==1.0.5", # to be able to have dynamic content in the documentation
] ]
tests = [ tests = [