diff --git a/README.md b/README.md index 8b1c5cb..e45e162 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,8 @@ If you are looking for the other amazon-textract-* packages, you can find them u Textractor is available on PyPI and can be installed with `pip install amazon-textract-textractor`. By default this will install the minimal version of Textractor which is suitable for lambda execution. The following extras can be used to add features: - `pandas` (`pip install "amazon-textract-textractor[pandas]"`) installs pandas which is used to enable DataFrame and CSV exports. -- `pdf` (`pip install "amazon-textract-textractor[pdf]"`) includes `pdf2image` and enables PDF rasterization in Textractor. Note that this is **not** necessary to call Textract with a PDF file. +- `pdfium` (`pip install amazon-textract-textractor[pdfium]`) includes `pypdfium2` and is the recommended way to enable PDF rasterization in Textractor. Note that this is **not** necessary to call Textract with a PDF file. +- `pdf` (`pip install amazon-textract-textractor[pdf]`) includes `pdf2image` and is an additional way to enable PDF rasterization in Textractor. Note that this is **not** necessary to call Textract with a PDF file. - `torch` (`pip install "amazon-textract-textractor[torch]"`) includes `sentence_transformers` for better word search and matching. This will work on CPU but be noticeably slower than non-machine learning based approaches. - `dev` (`pip install "amazon-textract-textractor[dev]"`) includes all the dependencies above and everything else needed to test the code. diff --git a/setup.py b/setup.py index f08c21e..66fd0b6 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def _run(self, command): setup( # include data files name="amazon-textract-textractor", - version="1.7.12", + version="1.8.0", license="Apache 2.0", description="A package to use AWS Textract services.", url="https://github.com/aws-samples/amazon-textract-textractor", diff --git a/textractor/__init__.py b/textractor/__init__.py index 361013d..107a113 100644 --- a/textractor/__init__.py +++ b/textractor/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.7.12" +__version__ = "1.8.0" from .textractor import Textractor