-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from PaddlePaddle/dygraph
update-12-21
- Loading branch information
Showing
619 changed files
with
45,168 additions
and
59,252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.