Skip to content

Commit

Permalink
fix build whl bug in win
Browse files Browse the repository at this point in the history
  • Loading branch information
WenmuZhou committed Jul 29, 2021
1 parent 750056b commit 365dfe6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include LICENSE
include README.md

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 tools/infer *.py
recursive-include ppocr/utils/e2e_utils/ *.py
recursive-include ppocr/utils/e2e_utils *.py
2 changes: 1 addition & 1 deletion ppstructure/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include LICENSE
include README.md

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 tools/infer *.py
recursive-include ppstructure *.py
Expand Down
4 changes: 2 additions & 2 deletions ppstructure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# 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']
1 change: 0 additions & 1 deletion ppstructure/paddlestructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

from ppocr.utils.logging import get_logger
from ppstructure.predict_system import OCRSystem, save_res
from ppstructure.table.predict_table import to_excel
from ppstructure.utility import init_args, draw_result

logger = get_logger()
Expand Down

0 comments on commit 365dfe6

Please sign in to comment.