From fb4be79de709b5515188f28518872d15dbd6e49e Mon Sep 17 00:00:00 2001 From: Jerome Flesch Date: Thu, 30 Nov 2017 11:39:26 +0100 Subject: [PATCH] README/setup.py: Update Repository URIs Signed-off-by: Jerome Flesch --- README.markdown | 14 +++++++------- setup.py | 4 ++-- src/pyocr/cuneiform.py | 2 +- src/pyocr/libtesseract/__init__.py | 2 +- src/pyocr/pyocr.py | 2 +- src/pyocr/tesseract.py | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.markdown b/README.markdown index ff532fe..7effaf8 100644 --- a/README.markdown +++ b/README.markdown @@ -40,7 +40,7 @@ sudo pip3 install pyocr # Python 3.X or the manual way: ```sh mkdir -p ~/git ; cd git -git clone https://github.com/jflesch/pyocr.git +git clone https://github.com/openpaperwork/pyocr.git cd pyocr sudo python ./setup.py install ``` @@ -292,23 +292,23 @@ To run the tesseract tests, you will need the following lang data files: If you want to run OCR on natural scenes (photos, etc), you will have to filter the image first. There are many algorithms possible to do that. One of those who gives the best results is -[Stroke Width Transform](https://github.com/jflesch/libpillowfight#stroke-width-transformation). +[Stroke Width Transform](https://github.com/openpaperwork/libpillowfight#stroke-width-transformation). ## Contact -* [Mailing-list](https://github.com/jflesch/paperwork/wiki/Contact#mailing-list) -* [Bug tracker](https://github.com/jflesch/pyocr/issues/) +* [Mailing-list](https://github.com/openpaperwork/paperwork/wiki/Contact#mailing-list) +* [Bug tracker](https://github.com/openpaperwork/pyocr/issues/) ## Applications that use PyOCR * [Mayan EDMS](http://mayan-edms.com/) * [Paperless](https://github.com/danielquinn/paperless#readme) -* [Paperwork](https://github.com/jflesch/paperwork#readme) +* [Paperwork](https://github.com/openpaperwork/paperwork#readme) If you know of any other applications that use Pyocr, please -[tell us](https://github.com/jflesch/paperwork/wiki/Contact#mailing-list) :-) +[tell us](https://github.com/openpaperwork/paperwork/wiki/Contact#mailing-list) :-) ## Copyright @@ -317,4 +317,4 @@ Copyright belongs to the authors of each piece of code (see the file AUTHORS for the contributors list, and ```git blame``` to know which lines belong to which author). -https://github.com/jflesch/pyocr +https://github.com/openpaperwork/pyocr diff --git a/setup.py b/setup.py index 13a23df..f3a7fa8 100755 --- a/setup.py +++ b/setup.py @@ -15,8 +15,8 @@ description=("A Python wrapper for OCR engines (Tesseract, Cuneiform," " etc)"), keywords="tesseract cuneiform ocr", - url="https://github.com/jflesch/pyocr", - download_url="https://github.com/jflesch/pyocr/archive/0.4.7.zip", + url="https://github.com/openpaperwork/pyocr", + download_url="https://github.com/openpaperwork/pyocr/archive/0.4.7.zip", classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", diff --git a/src/pyocr/cuneiform.py b/src/pyocr/cuneiform.py index a461d92..8cb1225 100644 --- a/src/pyocr/cuneiform.py +++ b/src/pyocr/cuneiform.py @@ -12,7 +12,7 @@ PyOCR is released under the GPL v3. Copyright (c) Samuel Hoffstaetter, 2009 Copyright (c) Jerome Flesch, 2011-2016 -https://github.com/jflesch/python-tesseract#readme +https://github.com/openpaperwork/pyocr#readme ''' import codecs diff --git a/src/pyocr/libtesseract/__init__.py b/src/pyocr/libtesseract/__init__.py index c3e8e27..6fb8e64 100644 --- a/src/pyocr/libtesseract/__init__.py +++ b/src/pyocr/libtesseract/__init__.py @@ -12,7 +12,7 @@ COPYRIGHT: PyOCR is released under the GPL v3. Copyright (c) Jerome Flesch, 2011-2016 -https://github.com/jflesch/pyocr#readme +https://github.com/openpaperwork/pyocr#readme ''' from os import devnull from .. import builders diff --git a/src/pyocr/pyocr.py b/src/pyocr/pyocr.py index 3aae37a..010587c 100755 --- a/src/pyocr/pyocr.py +++ b/src/pyocr/pyocr.py @@ -42,7 +42,7 @@ Tesseract module: Copyright (c) Samuel Hoffstaetter, 2009 WEBSITE: -https://github.com/jflesch/python-tesseract#readme +https://github.com/openpaperwork/pyocr#readme """ from . import cuneiform diff --git a/src/pyocr/tesseract.py b/src/pyocr/tesseract.py index 320765f..49e6d33 100755 --- a/src/pyocr/tesseract.py +++ b/src/pyocr/tesseract.py @@ -13,7 +13,7 @@ PyOCR is released under the GPL v3. Copyright (c) Samuel Hoffstaetter, 2009 Copyright (c) Jerome Flesch, 2011-2016 -https://github.com/jflesch/python-tesseract#readme +https://github.com/openpaperwork/pyocr#readme ''' import codecs