refactor: replace PyPDF2 with pypdf across the codebase. ref #1412

This commit is contained in:
ntohidi
2025-12-03 10:59:18 +01:00
parent f32cfc6db0
commit df4d87ed78
4 changed files with 26 additions and 26 deletions

View File

@@ -59,13 +59,13 @@ classifiers = [
]
[project.optional-dependencies]
pdf = ["PyPDF2"]
pdf = ["pypdf"]
torch = ["torch", "nltk", "scikit-learn"]
transformer = ["transformers", "tokenizers", "sentence-transformers"]
cosine = ["torch", "transformers", "nltk", "sentence-transformers"]
sync = ["selenium"]
all = [
"PyPDF2",
"pypdf",
"torch",
"nltk",
"scikit-learn",