Metadata-Version: 1.2
Name: bookbook
Version: 0.2
Summary: Tools to use a collection of notebooks as 'chapters'
Home-page: https://github.com/takluyver/bookbook
License: UNKNOWN
Author: Thomas Kluyver
Author-email: thomas@kluyver.me.uk
Requires-Python: >=3.5
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Documentation
Requires-Dist: nbconvert
Requires-Dist: pandocfilters
Requires-Dist: jinja2

Bookbook converts a set of notebooks in a directory to HTML or PDF,
preserving cross references within and between notebooks.

This code is in early development, so use it at your own risk.

It expects a directory of notebooks whose names indicate their order, e.g.
``01-introduction.ipynb``. To run it::

    python3 -m bookbook.html           # HTML output under html/
    python3 -m bookbook.latex [--pdf]  # Latex/PDF output as combined.(tex|pdf)

Add ``--help`` to either command for more options.

Installation
------------

Bookbook requires Python 3.5.

::

    pip install bookbook

To install locally as an editable install, run::

    pip install flit
    git clone https://github.com/takluyver/bookbook.git
    cd bookbook
    flit install --symlink


