Skip to content
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.

Commit

Permalink
README/setup.py: Update Repository URIs
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Flesch <[email protected]>
  • Loading branch information
jflesch committed Nov 30, 2017
1 parent a73d2b5 commit fb4be79
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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

Expand All @@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/pyocr/cuneiform.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/pyocr/libtesseract/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/pyocr/pyocr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/pyocr/tesseract.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fb4be79

Please sign in to comment.