Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/user/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ To process background lines, you can pass ``process_background=True``.
:file: ../_static/csv/background_lines.csv
:class: full-width

.. _visual_debug:
Visual debugging
----------------

Expand Down
17 changes: 14 additions & 3 deletions docs/user/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ You can use one of the following methods to install Camelot:
pip
---

To install Camelot from PyPI using ``pip``, please include the extra ``cv`` requirement as shown::
To install Camelot from PyPI using ``pip``::

$ pip install "camelot-py[base]"
$ pip install "camelot-py"

conda
-----
Expand All @@ -37,4 +37,15 @@ After :ref:`installing the dependencies <install_deps>`, you can install Camelot
::

$ cd camelot
$ pip install ".[base]"
$ pip install "."

Optional Dependencies
---------------------

Additional dependencies for Camelot can be installed using the following options

- ``[plot]`` installs the python package ``matplotlib`` and is used for :ref:`visual debugging <visual_debug>`.

- ``[ghostscript]`` installs the python package ``ghostscript`` and is used for the optional ghostscript backend.

Note that ``[ghostscript]`` only installs the python package ``ghostscript``, which provides an interface to the Ghostscript C-API. Users must still `download <https://www.ghostscript.com/>`_ and install Ghostscript manually.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "PDF Table Extraction for Humans."
authors = [
{name = "Vinayak Mehta", email = "[email protected]"},
]
license = "MIT"
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
Loading