We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a91892 commit 8978378Copy full SHA for 8978378
.github/workflows/gen_whl_to_pypi_rapidocr_web.yml
@@ -20,7 +20,6 @@ jobs:
20
21
- name: Run setup.py
22
run: |
23
- cd ocrweb
24
pip install -r requirements.txt
25
26
python -m pip install --upgrade pip
rapidocr_web/ocrweb.spec
@@ -1,12 +1,12 @@
1
# -*- mode: python ; coding: utf-8 -*-
2
from pathlib import Path
3
4
-import rapidocr_onnxruntime
+import rapidocr
5
6
block_cipher = None
7
8
-package_name = 'rapidocr_onnxruntime'
9
-install_dir = Path(rapidocr_onnxruntime.__file__).resolve().parent
+package_name = 'rapidocr'
+install_dir = Path(rapidocr.__file__).resolve().parent
10
11
onnx_paths = list(install_dir.rglob('*.onnx'))
12
yaml_paths = list(install_dir.rglob('*.yaml'))
0 commit comments