File size: 4,403 Bytes
2acaa40
44657b5
d78583d
44657b5
2acaa40
44657b5
2acaa40
 
 
 
 
 
 
44657b5
 
2acaa40
 
 
 
 
44657b5
 
 
 
 
 
 
 
 
 
2acaa40
 
 
 
 
 
 
 
e6a25a6
2acaa40
84568d7
 
2acaa40
 
 
6237d61
2acaa40
 
 
 
 
 
 
 
 
 
 
 
 
 
6237d61
 
2acaa40
 
 
 
 
 
 
 
 
 
 
 
 
6237d61
2acaa40
e6a25a6
2acaa40
 
 
 
 
 
 
 
6237d61
2acaa40
 
6237d61
 
2acaa40
 
6237d61
44657b5
2acaa40
 
 
 
 
 
 
 
 
84568d7
2acaa40
 
44657b5
e6a25a6
 
 
2acaa40
 
 
 
 
 
44657b5
 
 
 
 
 
 
 
e6a25a6
44657b5
 
 
 
 
 
 
 
 
 
84568d7
 
 
 
 
 
 
44657b5
 
84568d7
 
 
22bc712
 
 
 
 
44657b5
 
22bc712
 
 
 
 
 
 
 
 
 
 
 
d78583d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
[project]
name = "docling-serve"
version = "0.2.0"  # DO NOT EDIT, updated automatically
description = "Running Docling as a service"
license = {text = "MIT"}
authors = [
    {name="Michele Dolfi", email="[email protected]"},
    {name="Guillaume Moutier", email="[email protected]"},
    {name="Anil Vishnoi", email="[email protected]"},
    {name="Panos Vagenas", email="[email protected]"},
    {name="Panos Vagenas", email="[email protected]"},
    {name="Christoph Auer", email="[email protected]"},
    {name="Peter Staar", email="[email protected]"},
]
maintainers = [
    {name="Michele Dolfi", email="[email protected]"},
    {name="Anil Vishnoi", email="[email protected]"},
    {name="Panos Vagenas", email="[email protected]"},
    {name="Christoph Auer", email="[email protected]"},
    {name="Peter Staar", email="[email protected]"},
]
readme = "README.md"
classifiers = [
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    # "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "Typing :: Typed",
    "Programming Language :: Python :: 3"
]
requires-python = ">=3.10"
dependencies = [
    "docling~=2.23",
    "fastapi[standard]~=0.115",
    "httpx~=0.28",
    "pydantic~=2.10",
    "pydantic-settings~=2.4",
    "python-multipart>=0.0.14,<0.1.0",
    "typer~=0.12",
    "uvicorn[standard]>=0.29.0,<1.0.0",
]

[project.optional-dependencies]
ui = [
    "gradio~=5.9"
]
tesserocr = [
    "tesserocr~=2.7"
]
rapidocr = [
    "rapidocr-onnxruntime~=1.4; python_version<'3.13'",
    "onnxruntime~=1.7",
]
cpu = [
  "torch>=2.6.0",
  "torchvision>=0.21.0",
]
cu124 = [
  "torch>=2.6.0",
  "torchvision>=0.21.0",
]

[dependency-groups]
dev = [
    "autoflake~=2.3",
    "black~=24.8",
    "flake8~=7.1",
    "isort~=5.13",
    "mypy~=1.11",
    "pre-commit~=3.8",
    "pytest~=8.3",
    "pytest-asyncio~=0.24",
    "pytest-check~=2.4",
    "python-semantic-release~=7.32",
]

[tool.uv]
package = true
conflicts = [
  [
    { extra = "cpu" },
    { extra = "cu124" },
  ],
]

[tool.uv.sources]
torch = [
  { index = "pytorch-cpu", extra = "cpu" },
  { index = "pytorch-cu124", extra = "cu124" },
]
torchvision = [
  { index = "pytorch-cpu", extra = "cpu" },
  { index = "pytorch-cu124", extra = "cu124" },
]

[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true

[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true

[tool.setuptools.packages.find]
include = ["docling_serve"]

[project.scripts]
docling-serve = "docling_serve.__main__:main"

[project.urls]
Homepage = "https://github.com/DS4SD/docling-serve"
# Documentation = "https://ds4sd.github.io/docling"
Repository = "https://github.com/DS4SD/docling-serve"
Issues = "https://github.com/DS4SD/docling-serve/issues"
Changelog = "https://github.com/DS4SD/docling-serve/blob/main/CHANGELOG.md"

[tool.black]
line-length = 88
target-version = ["py310"]
include = '\.pyi?$'

[tool.isort]
profile = "black"
known_third_party = ["docling", "docling_core"]
line_length = 88
py_version=311

[tool.autoflake]
in-place = true
remove-all-unused-imports = true
remove-unused-variables = true
expand-star-imports = true
recursive = true

[tool.mypy]
pretty = true
# strict = true
no_implicit_optional = true
plugins = "pydantic.mypy"
python_version = "3.10"

[[tool.mypy.overrides]]
module = [
    "easyocr.*",
    "tesserocr.*",
    "rapidocr_onnxruntime.*",
    "docling_conversion.*",
    "gradio_ui.*",
    "response_preparation.*",
    "helper_functions.*",
    "requests.*",
]
ignore_missing_imports = true

[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
minversion = "8.2"
testpaths = [
    "tests",
]
addopts = "-rA --color=yes --tb=short --maxfail=5"
markers = [
"asyncio",
]

[tool.semantic_release]
# for default values check:
# https://github.com/python-semantic-release/python-semantic-release/blob/v7.32.2/semantic_release/defaults.cfg

version_source = "tag_only"
branch = "main"

# configure types which should trigger minor and patch version bumps respectively
# (note that they must be a subset of the configured allowed types):
parser_angular_allowed_types = "build,chore,ci,docs,feat,fix,perf,style,refactor,test"
parser_angular_minor_types = "feat"
parser_angular_patch_types = "fix,perf"