Skip to content

Commit

Permalink
Merge pull request #28 from PaddlePaddle/dygraph
Browse files Browse the repository at this point in the history
update-12-21
  • Loading branch information
BeyondYourself authored Dec 21, 2020
2 parents 6e98c2b + f117f05 commit 5b7b3fd
Show file tree
Hide file tree
Showing 619 changed files with 45,168 additions and 59,252 deletions.
7 changes: 3 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
include LICENSE.txt
include README.md

recursive-include ppocr/utils *.txt utility.py character.py check.py
recursive-include ppocr/data/det *.py
recursive-include ppocr/utils *.txt utility.py logging.py
recursive-include ppocr/data/ *.py
recursive-include ppocr/postprocess *.py
recursive-include ppocr/postprocess/lanms *.*
recursive-include tools/infer *.py
recursive-include tools/infer *.py
35 changes: 35 additions & 0 deletions PPOCRLabel/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# ex: set ts=8 noet:

all: qt5 test

test: testpy3

testpy2:
python -m unittest discover tests

testpy3:
python3 -m unittest discover tests

qt4: qt4py2

qt5: qt5py3

qt4py2:
pyrcc4 -py2 -o libs/resources.py resources.qrc

qt4py3:
pyrcc4 -py3 -o libs/resources.py resources.qrc

qt5py3:
pyrcc5 -o libs/resources.py resources.qrc

clean:
rm -rf ~/.labelImgSettings.pkl *.pyc dist labelImg.egg-info __pycache__ build

pip_upload:
python3 setup.py upload

long_description:
restview --long-description

.PHONY: all
Loading

0 comments on commit 5b7b3fd

Please sign in to comment.