docling 0.1.0__tar.gz → 0.1.1__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-0.1.0 → docling-0.1.1}/PKG-INFO +5 -3
- {docling-0.1.0 → docling-0.1.1}/README.md +2 -2
- {docling-0.1.0 → docling-0.1.1}/pyproject.toml +3 -1
- {docling-0.1.0 → docling-0.1.1}/LICENSE +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/__init__.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/backend/__init__.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/backend/abstract_backend.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/backend/pypdfium2_backend.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/datamodel/__init__.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/datamodel/base_models.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/datamodel/document.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/datamodel/settings.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/document_converter.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/models/__init__.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/models/ds_glm_model.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/models/easyocr_model.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/models/layout_model.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/models/page_assemble_model.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/models/table_structure_model.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/pipeline/__init__.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/pipeline/base_model_pipeline.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/pipeline/standard_model_pipeline.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/utils/__init__.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/utils/layout_utils.py +0 -0
- {docling-0.1.0 → docling-0.1.1}/docling/utils/utils.py +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: docling
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: Docling PDF conversion package
|
5
|
+
Home-page: https://github.com/DS4SD/docling
|
5
6
|
License: MIT
|
6
7
|
Keywords: docling,convert,document,pdf,layout model,segmentation,table structure,table former
|
7
8
|
Author: Christoph Auer
|
@@ -26,10 +27,11 @@ Requires-Dist: huggingface_hub (>=0.23,<1)
|
|
26
27
|
Requires-Dist: pydantic (>=2.0.0,<3.0.0)
|
27
28
|
Requires-Dist: pydantic-settings (>=2.3.0,<3.0.0)
|
28
29
|
Requires-Dist: pypdfium2 (>=4.30.0,<5.0.0)
|
30
|
+
Project-URL: Repository, https://github.com/DS4SD/docling
|
29
31
|
Description-Content-Type: text/markdown
|
30
32
|
|
31
33
|
<p align="center">
|
32
|
-
<a href="https://github.com/ds4sd/docling"> <img loading="lazy" alt="Docling" src="logo.png" width="150" /> </a>
|
34
|
+
<a href="https://github.com/ds4sd/docling"> <img loading="lazy" alt="Docling" src="https://github.com/DS4SD/docling/raw/main/logo.png" width="150" /> </a>
|
33
35
|
</p>
|
34
36
|
|
35
37
|
# Docling
|
@@ -105,7 +107,7 @@ You can limit the CPU threads used by `docling` by setting the environment varia
|
|
105
107
|
|
106
108
|
## Contributing
|
107
109
|
|
108
|
-
Please read [Contributing to Docling](
|
110
|
+
Please read [Contributing to Docling](https://github.com/DS4SD/docling/blob/main/CONTRIBUTING.md) for details.
|
109
111
|
|
110
112
|
|
111
113
|
## References
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<p align="center">
|
2
|
-
<a href="https://github.com/ds4sd/docling"> <img loading="lazy" alt="Docling" src="logo.png" width="150" /> </a>
|
2
|
+
<a href="https://github.com/ds4sd/docling"> <img loading="lazy" alt="Docling" src="https://github.com/DS4SD/docling/raw/main/logo.png" width="150" /> </a>
|
3
3
|
</p>
|
4
4
|
|
5
5
|
# Docling
|
@@ -75,7 +75,7 @@ You can limit the CPU threads used by `docling` by setting the environment varia
|
|
75
75
|
|
76
76
|
## Contributing
|
77
77
|
|
78
|
-
Please read [Contributing to Docling](
|
78
|
+
Please read [Contributing to Docling](https://github.com/DS4SD/docling/blob/main/CONTRIBUTING.md) for details.
|
79
79
|
|
80
80
|
|
81
81
|
## References
|
@@ -1,10 +1,12 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "docling"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.1"
|
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"
|
7
7
|
readme = "README.md"
|
8
|
+
repository = "https://github.com/DS4SD/docling"
|
9
|
+
homepage = "https://github.com/DS4SD/docling"
|
8
10
|
keywords= ["docling", "convert", "document", "pdf", "layout model", "segmentation", "table structure", "table former"]
|
9
11
|
classifiers = [
|
10
12
|
"License :: OSI Approved :: MIT License",
|
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
|