rbx-proofreader 1.1.1__py3-none-any.whl → 1.1.2__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.
- proofreader/main.py +1 -1
- {rbx_proofreader-1.1.1.dist-info → rbx_proofreader-1.1.2.dist-info}/METADATA +12 -11
- {rbx_proofreader-1.1.1.dist-info → rbx_proofreader-1.1.2.dist-info}/RECORD +6 -6
- {rbx_proofreader-1.1.1.dist-info → rbx_proofreader-1.1.2.dist-info}/WHEEL +0 -0
- {rbx_proofreader-1.1.1.dist-info → rbx_proofreader-1.1.2.dist-info}/licenses/LICENSE +0 -0
- {rbx_proofreader-1.1.1.dist-info → rbx_proofreader-1.1.2.dist-info}/top_level.txt +0 -0
proofreader/main.py
CHANGED
|
@@ -54,7 +54,7 @@ class TradeEngine:
|
|
|
54
54
|
|
|
55
55
|
for path, url in assets.items():
|
|
56
56
|
if not path.exists():
|
|
57
|
-
print(f"📦 {path.name} missing. Downloading from
|
|
57
|
+
print(f"📦 {path.name} missing. Downloading from published release...")
|
|
58
58
|
self._download_file(url, path)
|
|
59
59
|
|
|
60
60
|
def _download_file(self, url, dest_path):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rbx-proofreader
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Visual trade detection and OCR engine
|
|
5
5
|
License: MIT
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -8,16 +8,17 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
8
8
|
Requires-Python: >=3.12
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE
|
|
11
|
-
Requires-Dist: easyocr
|
|
12
|
-
Requires-Dist: numpy
|
|
13
|
-
Requires-Dist: opencv-python
|
|
14
|
-
Requires-Dist: Pillow
|
|
15
|
-
Requires-Dist:
|
|
16
|
-
Requires-Dist:
|
|
17
|
-
Requires-Dist:
|
|
18
|
-
Requires-Dist:
|
|
19
|
-
Requires-Dist:
|
|
20
|
-
Requires-Dist:
|
|
11
|
+
Requires-Dist: easyocr<2.0.0,>=1.7.0
|
|
12
|
+
Requires-Dist: numpy<2.0.0,>=1.24.0
|
|
13
|
+
Requires-Dist: opencv-python<5.0.0,>=4.8.0
|
|
14
|
+
Requires-Dist: Pillow<11.0.0,>=10.0.0
|
|
15
|
+
Requires-Dist: playwright<2.0.0,>=1.40.0
|
|
16
|
+
Requires-Dist: rapidfuzz<4.0.0,>=3.0.0
|
|
17
|
+
Requires-Dist: requests<3.0.0,>=2.31.0
|
|
18
|
+
Requires-Dist: torch<3.0.0,>=2.0.0
|
|
19
|
+
Requires-Dist: tqdm<5.0.0,>=4.66.0
|
|
20
|
+
Requires-Dist: transformers<5.0.0,>=4.30.0
|
|
21
|
+
Requires-Dist: ultralytics<9.0.0,>=8.0.0
|
|
21
22
|
Provides-Extra: train
|
|
22
23
|
Requires-Dist: playwright>=1.40.0; extra == "train"
|
|
23
24
|
Dynamic: license-file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
proofreader/__init__.py,sha256=YVsRxmHmC2nvCrxvNmZX230B1s5k36RFM51kElXSxB4,285
|
|
2
|
-
proofreader/main.py,sha256=
|
|
2
|
+
proofreader/main.py,sha256=2aeev6Sf9mOw9xCgGnBpSF4OssQum7otT5Tan6NwU28,5223
|
|
3
3
|
proofreader/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
proofreader/core/config.py,sha256=8L6MTBn3Z3Xa0bjPYt5q-OI-mm0-wMqeDSS0beAQ1fk,5906
|
|
5
5
|
proofreader/core/detector.py,sha256=em2Kx0v96Zofi4kK5ipWlqMX9czq9YobHuEGuZkAQEc,987
|
|
@@ -10,8 +10,8 @@ proofreader/core/schema.py,sha256=ga_7cYCBO13yFvLAtyAgDw7CFEb9c8Ui85SJDu2pcsA,25
|
|
|
10
10
|
proofreader/train/clip_trainer.py,sha256=6hiVrJ6WX6m13E3FE8kouIxXjQo3GPrU_8X266oeXqs,6416
|
|
11
11
|
proofreader/train/yolo_trainer.py,sha256=nOHPrYmBuefsUyiGEYqboNU6i3pykBXE0U4HYwNaqg8,986
|
|
12
12
|
proofreader/train/emulator/generator.py,sha256=_l7qFLSoQxPYUKLDrqVIS-0sUs5FkjBK7ENWmZ-q2ls,9681
|
|
13
|
-
rbx_proofreader-1.1.
|
|
14
|
-
rbx_proofreader-1.1.
|
|
15
|
-
rbx_proofreader-1.1.
|
|
16
|
-
rbx_proofreader-1.1.
|
|
17
|
-
rbx_proofreader-1.1.
|
|
13
|
+
rbx_proofreader-1.1.2.dist-info/licenses/LICENSE,sha256=eHSaONn9P_ZcYiY9QCi_XzVARIoQu7l2AI5BtFGA_BY,1069
|
|
14
|
+
rbx_proofreader-1.1.2.dist-info/METADATA,sha256=xRl7_OjB8uWaac23DwycKZaOoTJdKLrLNX6qU4bP_F4,6680
|
|
15
|
+
rbx_proofreader-1.1.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
16
|
+
rbx_proofreader-1.1.2.dist-info/top_level.txt,sha256=U3s8IVdLtGeGD3JgMmCHUgAsFhZXSSamp3vIojAFTxU,12
|
|
17
|
+
rbx_proofreader-1.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|