mit neuen venv und exe-Files
This commit is contained in:
16
venv3_12/Lib/site-packages/cx_Freeze/hooks/pymupdf.py
Normal file
16
venv3_12/Lib/site-packages/cx_Freeze/hooks/pymupdf.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""A collection of functions which are triggered automatically by finder when
|
||||
pymupdf package is included.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from cx_Freeze.finder import ModuleFinder
|
||||
from cx_Freeze.module import Module
|
||||
|
||||
|
||||
def load_pymupdf(finder: ModuleFinder, module: Module) -> None: # noqa: ARG001
|
||||
"""The pymupdf must include mupdf."""
|
||||
finder.include_module("pymupdf.mupdf")
|
||||
Reference in New Issue
Block a user