docling 0.1.1__tar.gz → 0.2.0__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.1 → docling-0.2.0}/PKG-INFO +3 -3
- {docling-0.1.1 → docling-0.2.0}/README.md +2 -2
- {docling-0.1.1 → docling-0.2.0}/docling/datamodel/base_models.py +1 -2
- {docling-0.1.1 → docling-0.2.0}/pyproject.toml +14 -1
- {docling-0.1.1 → docling-0.2.0}/LICENSE +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/__init__.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/backend/__init__.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/backend/abstract_backend.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/backend/pypdfium2_backend.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/datamodel/__init__.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/datamodel/document.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/datamodel/settings.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/document_converter.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/models/__init__.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/models/ds_glm_model.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/models/easyocr_model.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/models/layout_model.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/models/page_assemble_model.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/models/table_structure_model.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/pipeline/__init__.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/pipeline/base_model_pipeline.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/pipeline/standard_model_pipeline.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/utils/__init__.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/utils/layout_utils.py +0 -0
- {docling-0.1.1 → docling-0.2.0}/docling/utils/utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: docling
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.2.0
|
4
4
|
Summary: Docling PDF conversion package
|
5
5
|
Home-page: https://github.com/DS4SD/docling
|
6
6
|
License: MIT
|
@@ -36,7 +36,7 @@ Description-Content-Type: text/markdown
|
|
36
36
|
|
37
37
|
# Docling
|
38
38
|
|
39
|
-
|
39
|
+
Docling bundles PDF document conversion to JSON and Markdown in an easy, self-contained package.
|
40
40
|
|
41
41
|
## Features
|
42
42
|
* ⚡ Converts any PDF document to JSON or Markdown format, stable and lightning fast
|
@@ -62,7 +62,7 @@ poetry install
|
|
62
62
|
|
63
63
|
## Usage
|
64
64
|
|
65
|
-
For basic usage, see the [convert.py](examples/convert.py) example module. Run with:
|
65
|
+
For basic usage, see the [convert.py](https://github.com/DS4SD/docling/blob/main/examples/convert.py) example module. Run with:
|
66
66
|
|
67
67
|
```
|
68
68
|
python examples/convert.py
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
# Docling
|
6
6
|
|
7
|
-
|
7
|
+
Docling bundles PDF document conversion to JSON and Markdown in an easy, self-contained package.
|
8
8
|
|
9
9
|
## Features
|
10
10
|
* ⚡ Converts any PDF document to JSON or Markdown format, stable and lightning fast
|
@@ -30,7 +30,7 @@ poetry install
|
|
30
30
|
|
31
31
|
## Usage
|
32
32
|
|
33
|
-
For basic usage, see the [convert.py](examples/convert.py) example module. Run with:
|
33
|
+
For basic usage, see the [convert.py](https://github.com/DS4SD/docling/blob/main/examples/convert.py) example module. Run with:
|
34
34
|
|
35
35
|
```
|
36
36
|
python examples/convert.py
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "docling"
|
3
|
-
version = "0.
|
3
|
+
version = "0.2.0" # 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"
|
@@ -72,3 +72,16 @@ python_version = "3.11"
|
|
72
72
|
[tool.flake8]
|
73
73
|
max-line-length = 88
|
74
74
|
extend-ignore = ["E203", "E501"]
|
75
|
+
|
76
|
+
[tool.semantic_release]
|
77
|
+
# for default values check:
|
78
|
+
# https://github.com/python-semantic-release/python-semantic-release/blob/v7.32.2/semantic_release/defaults.cfg
|
79
|
+
|
80
|
+
version_source = "tag_only"
|
81
|
+
branch = "main"
|
82
|
+
|
83
|
+
# configure types which should trigger minor and patch version bumps respectively
|
84
|
+
# (note that they must be a subset of the configured allowed types):
|
85
|
+
parser_angular_allowed_types = "build,chore,ci,docs,feat,fix,perf,style,refactor,test"
|
86
|
+
parser_angular_minor_types = "feat"
|
87
|
+
parser_angular_patch_types = "fix,perf"
|
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
|