docling 0.1.2__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.2 → docling-0.2.0}/PKG-INFO +1 -1
- {docling-0.1.2 → docling-0.2.0}/docling/datamodel/base_models.py +1 -2
- {docling-0.1.2 → docling-0.2.0}/pyproject.toml +14 -1
- {docling-0.1.2 → docling-0.2.0}/LICENSE +0 -0
- {docling-0.1.2 → docling-0.2.0}/README.md +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/__init__.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/backend/__init__.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/backend/abstract_backend.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/backend/pypdfium2_backend.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/datamodel/__init__.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/datamodel/document.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/datamodel/settings.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/document_converter.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/models/__init__.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/models/ds_glm_model.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/models/easyocr_model.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/models/layout_model.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/models/page_assemble_model.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/models/table_structure_model.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/pipeline/__init__.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/pipeline/base_model_pipeline.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/pipeline/standard_model_pipeline.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/utils/__init__.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/utils/layout_utils.py +0 -0
- {docling-0.1.2 → docling-0.2.0}/docling/utils/utils.py +0 -0
@@ -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
|
File without changes
|