onnxtr 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.
onnxtr/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = 'v0.1.0'
1
+ __version__ = 'v0.1.1'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: onnxtr
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Onnx Text Recognition (OnnxTR): docTR Onnx-Wrapper for high-performance OCR on documents.
5
5
  Author-email: Felix Dittrich <felixdittrich92@gmail.com>
6
6
  Maintainer: Felix Dittrich
@@ -228,7 +228,6 @@ License-File: LICENSE
228
228
  Requires-Dist: numpy <2.0.0,>=1.16.0
229
229
  Requires-Dist: scipy <2.0.0,>=1.4.0
230
230
  Requires-Dist: onnx <2.0.0,>=1.12.0
231
- Requires-Dist: onnxruntime >=1.11.0
232
231
  Requires-Dist: opencv-python <5.0.0,>=4.5.0
233
232
  Requires-Dist: pypdfium2 <5.0.0,>=4.0.0
234
233
  Requires-Dist: pyclipper <2.0.0,>=1.2.0
@@ -239,7 +238,10 @@ Requires-Dist: Pillow >=9.2.0
239
238
  Requires-Dist: defusedxml >=0.7.0
240
239
  Requires-Dist: anyascii >=0.3.2
241
240
  Requires-Dist: tqdm >=4.30.0
241
+ Provides-Extra: cpu
242
+ Requires-Dist: onnxruntime >=1.11.0 ; extra == 'cpu'
242
243
  Provides-Extra: dev
244
+ Requires-Dist: onnxruntime >=1.11.0 ; extra == 'dev'
243
245
  Requires-Dist: weasyprint >=55.0 ; extra == 'dev'
244
246
  Requires-Dist: matplotlib >=3.1.0 ; extra == 'dev'
245
247
  Requires-Dist: mplcursors >=0.3 ; extra == 'dev'
@@ -301,15 +303,15 @@ You can then install the latest release of the package using [pypi](https://pypi
301
303
  **NOTE:** For GPU support please take a look at: [ONNX Runtime](https://onnxruntime.ai/getting-started). Currently supported execution providers by default are: CPU, CUDA
302
304
 
303
305
  ```shell
304
- pip install OnnxTR
306
+ pip install onnxtr[cpu]
305
307
  # with gpu support
306
- pip install "OnnxTR[gpu]"
308
+ pip install "onnxtr[gpu]"
307
309
  # with HTML support
308
- pip install "OnnxTR[html]"
310
+ pip install "onnxtr[html]"
309
311
  # with support for visualization
310
- pip install "OnnxTR[viz]"
312
+ pip install "onnxtr[viz]"
311
313
  # with support for all dependencies
312
- pip install "OnnxTR[html, gpu, viz]"
314
+ pip install "onnxtr[html, gpu, viz]"
313
315
  ```
314
316
 
315
317
  ### Reading files
@@ -1,6 +1,6 @@
1
1
  onnxtr/__init__.py,sha256=h7Wc2tuHLsaoCk5xNpEFEK-g11A6SJA7nAasA76TQ_Y,100
2
2
  onnxtr/file_utils.py,sha256=WjUKalEdR53aoeIY4e-ihy3r7J_C9qFxL40JHGPfutc,1107
3
- onnxtr/version.py,sha256=wC2oqFtrOUdONUyrZY5FqyMyRDiF3ryABp7mW73C87o,23
3
+ onnxtr/version.py,sha256=jQY6B0xUe16A1ACYL5noxMrvy3wwP2XMsFq2Su0alUA,23
4
4
  onnxtr/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  onnxtr/contrib/artefacts.py,sha256=tdmfhvfXVRYEH7uj4_hqf2cuUGoTieyNK8bXsD3zHwo,5383
6
6
  onnxtr/contrib/base.py,sha256=PoCKtOIgj7u4xl-V0eBVh-QmVeTyk_eEggFHQ8R34AI,3445
@@ -62,9 +62,9 @@ onnxtr/utils/reconstitution.py,sha256=Hx1_ddLevKLzuxXc19UelPdsGlAwqi4f6vRSYKHDUB
62
62
  onnxtr/utils/repr.py,sha256=kfbjGL6KymGT8spo2UL4FJXZ0XRwa7CO7Y1dTVR8dIk,2129
63
63
  onnxtr/utils/visualization.py,sha256=CX09qvDnNIw3BFW5F3jM4R9OcpLWAeZyoDyTAOGRvls,9925
64
64
  onnxtr/utils/vocabs.py,sha256=SCQ4XQjbHSxunj1tg2iHRiPfE8OaTAMhcJbKq5BNvFs,3138
65
- onnxtr-0.1.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
66
- onnxtr-0.1.0.dist-info/METADATA,sha256=k4DicngL3zLNaAWV2yRaF82MbJ6XdpAh9D3X0OWBS3Y,24645
67
- onnxtr-0.1.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
68
- onnxtr-0.1.0.dist-info/top_level.txt,sha256=48aR9EH095hmgye7CNuxAW3o_cj4TjhWmuw3jEMdTs0,12
69
- onnxtr-0.1.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
70
- onnxtr-0.1.0.dist-info/RECORD,,
65
+ onnxtr-0.1.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
66
+ onnxtr-0.1.1.dist-info/METADATA,sha256=Fo9T9dyuaLLYzE8cAxCdiIQfhQRnumUqw2X1OS_PqIc,24740
67
+ onnxtr-0.1.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
68
+ onnxtr-0.1.1.dist-info/top_level.txt,sha256=48aR9EH095hmgye7CNuxAW3o_cj4TjhWmuw3jEMdTs0,12
69
+ onnxtr-0.1.1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
70
+ onnxtr-0.1.1.dist-info/RECORD,,
File without changes