========== Exceltable ========== Module ``sphinxcontrib.exceltable`` is an extension for Sphinx_, that adds support for including spreadsheets, or part of them, into Sphinx document. It has been tested to run on both Python 2.7 and 3.4 This is document describes :ref:`how to install `, :ref:`use ` and :ref:`contribute to the development ` of the :mod:`sphinxcontrib.exceltable` module. .. contents:: :local: .. _setup: Setup ===== Here you can find the minimum steps for installation and usage of the module: #. Install module along with its dependencies using `pip`, as follows. Alternatively, download the package and install it manually with command ``python setup.py install``:: pip install sphinxcontrib-exceltable .. NOTE:: The additional dependencies (Sphinx_, xlrd_, docutils_ and future_) are installed automatically. #. Start new Sphinx powered documentation project (unless you already have one):: sphinx-quickstart #. Configure directive of your choice into Sphinx :file:`conf.py` configuration file. .. code-block:: python # Add ``sphinxcontrib.exceltable`` into extension list extensions = ['sphinxcontrib.exceltable'] #. Place directive/role in your document (:ref:`see usage -section ` for :ref:`options