docling 1.12.0__tar.gz → 1.12.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {docling-1.12.0 → docling-1.12.2}/PKG-INFO +2 -2
- {docling-1.12.0 → docling-1.12.2}/docling/cli/main.py +2 -1
- {docling-1.12.0 → docling-1.12.2}/pyproject.toml +2 -2
- {docling-1.12.0 → docling-1.12.2}/LICENSE +0 -0
- {docling-1.12.0 → docling-1.12.2}/README.md +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/__init__.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/backend/__init__.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/backend/abstract_backend.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/backend/docling_parse_backend.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/backend/pypdfium2_backend.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/cli/__init__.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/datamodel/__init__.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/datamodel/base_models.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/datamodel/document.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/datamodel/settings.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/document_converter.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/models/__init__.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/models/base_ocr_model.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/models/ds_glm_model.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/models/easyocr_model.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/models/layout_model.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/models/page_assemble_model.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/models/table_structure_model.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/pipeline/__init__.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/pipeline/base_model_pipeline.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/pipeline/standard_model_pipeline.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/utils/__init__.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/utils/export.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/utils/layout_utils.py +0 -0
- {docling-1.12.0 → docling-1.12.2}/docling/utils/utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: docling
|
3
|
-
Version: 1.12.
|
3
|
+
Version: 1.12.2
|
4
4
|
Summary: Docling PDF conversion package
|
5
5
|
Home-page: https://github.com/DS4SD/docling
|
6
6
|
License: MIT
|
@@ -23,7 +23,7 @@ Provides-Extra: examples
|
|
23
23
|
Requires-Dist: certifi (>=2024.7.4)
|
24
24
|
Requires-Dist: deepsearch-glm (>=0.21.0,<0.22.0)
|
25
25
|
Requires-Dist: docling-core (>=1.3.0,<2.0.0)
|
26
|
-
Requires-Dist: docling-ibm-models (>=1.
|
26
|
+
Requires-Dist: docling-ibm-models (>=1.2.0,<2.0.0)
|
27
27
|
Requires-Dist: docling-parse (>=1.2.0,<2.0.0)
|
28
28
|
Requires-Dist: easyocr (>=1.7,<2.0)
|
29
29
|
Requires-Dist: filetype (>=1.2.0,<2.0.0)
|
@@ -174,7 +174,8 @@ def convert(
|
|
174
174
|
)
|
175
175
|
raise typer.Abort()
|
176
176
|
elif source.is_dir():
|
177
|
-
input_doc_paths.extend(list(source.glob("**/*.pdf"
|
177
|
+
input_doc_paths.extend(list(source.glob("**/*.pdf")))
|
178
|
+
input_doc_paths.extend(list(source.glob("**/*.PDF")))
|
178
179
|
else:
|
179
180
|
input_doc_paths.append(source)
|
180
181
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "docling"
|
3
|
-
version = "1.12.
|
3
|
+
version = "1.12.2" # DO NOT EDIT, updated automatically
|
4
4
|
description = "Docling PDF conversion package"
|
5
5
|
authors = ["Christoph Auer <cau@zurich.ibm.com>", "Michele Dolfi <dol@zurich.ibm.com>", "Maxim Lysak <mly@zurich.ibm.com>", "Nikos Livathinos <nli@zurich.ibm.com>", "Ahmed Nassar <ahn@zurich.ibm.com>", "Peter Staar <taa@zurich.ibm.com>"]
|
6
6
|
license = "MIT"
|
@@ -24,7 +24,7 @@ packages = [{include = "docling"}]
|
|
24
24
|
python = "^3.10"
|
25
25
|
pydantic = "^2.0.0"
|
26
26
|
docling-core = "^1.3.0"
|
27
|
-
docling-ibm-models = "^1.
|
27
|
+
docling-ibm-models = "^1.2.0"
|
28
28
|
deepsearch-glm = "^0.21.0"
|
29
29
|
filetype = "^1.2.0"
|
30
30
|
pypdfium2 = "^4.30.0"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|