"tests/vscode:/vscode.git/clone" did not exist on "038b42db942e724c86ede866465048fd57e08ee2"
Commit 365dfe6c authored by WenmuZhou's avatar WenmuZhou
Browse files

fix build whl bug in win

parent 750056b9
...@@ -2,7 +2,7 @@ include LICENSE ...@@ -2,7 +2,7 @@ include LICENSE
include README.md include README.md
recursive-include ppocr/utils *.txt utility.py logging.py network.py recursive-include ppocr/utils *.txt utility.py logging.py network.py
recursive-include ppocr/data/ *.py recursive-include ppocr/data *.py
recursive-include ppocr/postprocess *.py recursive-include ppocr/postprocess *.py
recursive-include tools/infer *.py recursive-include tools/infer *.py
recursive-include ppocr/utils/e2e_utils/ *.py recursive-include ppocr/utils/e2e_utils *.py
\ No newline at end of file \ No newline at end of file
...@@ -2,7 +2,7 @@ include LICENSE ...@@ -2,7 +2,7 @@ include LICENSE
include README.md include README.md
recursive-include ppocr/utils *.txt utility.py logging.py network.py recursive-include ppocr/utils *.txt utility.py logging.py network.py
recursive-include ppocr/data/ *.py recursive-include ppocr/data *.py
recursive-include ppocr/postprocess *.py recursive-include ppocr/postprocess *.py
recursive-include tools/infer *.py recursive-include tools/infer *.py
recursive-include ppstructure *.py recursive-include ppstructure *.py
......
...@@ -12,6 +12,6 @@ ...@@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from .paddlestructure import PaddleStructure, draw_result, to_excel from .paddlestructure import PaddleStructure, draw_result, save_res
__all__ = ['PaddleStructure', 'draw_result', 'to_excel'] __all__ = ['PaddleStructure', 'draw_result', 'save_res']
...@@ -25,7 +25,6 @@ from pathlib import Path ...@@ -25,7 +25,6 @@ from pathlib import Path
from ppocr.utils.logging import get_logger from ppocr.utils.logging import get_logger
from ppstructure.predict_system import OCRSystem, save_res from ppstructure.predict_system import OCRSystem, save_res
from ppstructure.table.predict_table import to_excel
from ppstructure.utility import init_args, draw_result from ppstructure.utility import init_args, draw_result
logger = get_logger() logger = get_logger()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment